File Coverage

test-data/lib/Local/UsesMoose.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 Local::UsesMoose;
2              
3 1     1   8 use Moose;
  1         2  
  1         6  
4              
5             has foo => (
6             is => 'ro',
7             isa => 'Str',
8             );
9              
10             __PACKAGE__->meta->make_immutable;
11             1;