File Coverage

blib/lib/Test/DBChanges/Pg/DBIC.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Test::DBChanges::Pg::DBIC;
2 1     1   552520 use Moo;
  1         10  
  1         8  
3 1     1   868 use namespace::autoclean;
  1         1576  
  1         5  
4              
5             with 'Test::DBChanges::Role::DBIC',
6             'Test::DBChanges::Role::Pg';
7              
8             our $VERSION = '1.0.1'; # VERSION
9             # ABSTRACT: track changes to DBIC+PostgreSQL resultsets
10              
11              
12             1;
13              
14             __END__