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   547531 use Moo;
  1         9  
  1         21  
3 1     1   834 use namespace::autoclean;
  1         1762  
  1         4  
4              
5             with 'Test::DBChanges::Role::DBIC',
6             'Test::DBChanges::Role::Pg';
7              
8             our $VERSION = '1.0.2'; # VERSION
9             # ABSTRACT: track changes to DBIC+PostgreSQL resultsets
10              
11              
12             1;
13              
14             __END__