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   31 use strict;
  7         8  
  7         196  
4 7     7   26 use utf8;
  7         6  
  7         41  
5 7     7   125 use Modern::Perl '2011'; ## no critic (Modules::ProhibitUseQuotedVersion)
  7         7  
  7         50  
6              
7             our $VERSION = '0.021'; # TRIAL VERSION
8 7     7   980 use Moo;
  7         8  
  7         30  
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__