File Coverage

blib/lib/KiokuDB/Role/Intrinsic.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::Role::Intrinsic;
4 1     1   8775 use Moose::Role;
  1         2  
  1         6  
5              
6 1     1   3941 use namespace::clean -except => 'meta';
  1         2  
  1         7  
7              
8              
9              
10             __PACKAGE__
11              
12             __END__
13              
14             =pod
15              
16             =head1 NAME
17              
18             KiokuDB::Role::Intrinsic - A role for value objects
19              
20             =head1 SYNOPSIS
21              
22             with qw(KiokuDB::Role::Intrinsic);
23              
24             =head1 DESCRIPTION
25              
26             When L<KiokuDB> detects this role on objects they are collapsed into their
27             parent by default, without needing an explicit typemap entry.
28              
29             =cut
30              
31