File Coverage

blib/lib/LittleORM/Meta/Attribute.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1 1     1   1039 use strict;
  1         2  
  1         39  
2              
3             package LittleORM::Meta::Attribute;
4              
5 1     1   5 use Moose;
  1         1  
  1         6  
6              
7             extends 'Moose::Meta::Attribute';
8             with 'LittleORM::Meta::Trait';
9              
10 1     1   5007 no Moose;
  1         2  
  1         5  
11              
12             1;