File Coverage

blib/lib/App/DBCritic/Loader.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package App::DBCritic::Loader;
2              
3 7     7   52 use strict;
  7         17  
  7         206  
4 7     7   37 use utf8;
  7         13  
  7         58  
5 7     7   199 use Modern::Perl '2011'; ## no critic (Modules::ProhibitUseQuotedVersion)
  7         14  
  7         48  
6              
7             our $VERSION = '0.022'; # VERSION
8 7     7   1202 use Moo;
  7         17  
  7         39  
9             extends 'DBIx::Class::Schema::Loader';
10             __PACKAGE__->loader_options( naming => 'v4', generate_pod => 0 );
11             1;
12              
13             # ABSTRACT: Loader class for schemas generated from a database connection
14              
15             __END__