File Coverage

blib/lib/LittleORM/Meta/Trait.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   448 use strict;
  1         2  
  1         42  
2              
3             package LittleORM::Meta::Trait;
4              
5 1     1   5 use Moose::Role;
  1         1  
  1         6  
6              
7             has 'description' => ( is => 'rw',
8             isa => 'HashRef',
9             lazy => 1,
10             default => sub { {} } );
11              
12 1     1   3746 no Moose::Role;
  1         2  
  1         4  
13              
14             1;
15