File Coverage

blib/lib/KiokuDB/Test/Digested.pm
Criterion Covered Total %
statement 2 4 50.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 4 6 66.6


line stmt bran cond sub pod time code
1             package KiokuDB::Test::Digested;
2             BEGIN {
3 1     1   22944 $KiokuDB::Test::Digested::AUTHORITY = 'cpan:NUFFIN';
4             }
5             $KiokuDB::Test::Digested::VERSION = '0.57';
6 1     1   1540 use Moose;
  0            
  0            
7              
8             use namespace::clean -except => 'meta';
9              
10             with qw(
11             KiokuDB::Role::ID::Digest
12             KiokuDB::Role::Immutable::Transitive
13             MooseX::Clone
14             );
15              
16             has [qw(foo bar)] => ( is => "ro" );
17              
18             sub digest_parts {
19             my $self = shift;
20              
21             return $self->foo, $self->bar;
22             }
23              
24             __PACKAGE__->meta->make_immutable;
25              
26             __PACKAGE__
27              
28             __END__
29              
30             =pod
31              
32             =encoding UTF-8
33              
34             =head1 NAME
35              
36             KiokuDB::Test::Digested
37              
38             =head1 VERSION
39              
40             version 0.57
41              
42             =head1 AUTHOR
43              
44             Yuval Kogman <nothingmuch@woobling.org>
45              
46             =head1 COPYRIGHT AND LICENSE
47              
48             This software is copyright (c) 2014 by Yuval Kogman, Infinity Interactive.
49              
50             This is free software; you can redistribute it and/or modify it under
51             the same terms as the Perl 5 programming language system itself.
52              
53             =cut