File Coverage

blib/lib/KiokuDB/Test/Company.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             #!/usr/bin/perl
2              
3             package KiokuDB::Test::Company;
4 2     2   10 use Moose;
  2         2  
  2         14  
5              
6 2     2   6586 use namespace::clean -except => 'meta';
  2         4  
  2         18  
7              
8             has name => (
9             isa => "Str",
10             is => "rw",
11             );
12              
13             __PACKAGE__->meta->make_immutable;
14              
15             __PACKAGE__
16              
17             __END__