File Coverage

blib/lib/KiokuDB/Test/Employee.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 11 72.7


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2              
3             package KiokuDB::Test::Employee;
4 2     2   9 use Moose;
  2         3  
  2         18  
5              
6 2     2   13047 use namespace::clean -except => 'meta';
  2         5  
  2         21  
7              
8             extends qw(KiokuDB::Test::Person);
9              
10             has company => (
11             isa => "KiokuDB::Test::Company",
12             is => "rw",
13             );
14              
15 0     0 0   sub lalala { 333 }
16              
17             __PACKAGE__->meta->make_immutable;
18              
19             __PACKAGE__
20              
21             __END__