File Coverage

blib/lib/Code/CutNPaste/Duplicate/Item.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Code::CutNPaste::Duplicate::Item;
2              
3 5     5   3333 use Moo;
  5         11  
  5         36  
4             has 'file' => ( is => 'ro' );
5             has 'line' => ( is => 'ro' );
6             has 'code' => ( is => 'ro' );
7              
8             our $VERSION = 0.31;
9              
10             1;
11              
12             __END__