File Coverage

blib/lib/MooseX/MultiObject/Role.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             package MooseX::MultiObject::Role;
2             BEGIN {
3 1     1   20 $MooseX::MultiObject::Role::VERSION = '0.01';
4             }
5             # ABSTRACT: role that a MultiObject does
6 1     1   3 use Moose::Role;
  1         1  
  1         8  
7 1     1   3767 use true;
  1         1  
  1         6  
8 1     1   563 use namespace::autoclean;
  1         1  
  1         9  
9              
10             requires 'add_managed_object';
11             requires 'get_managed_objects';
12              
13             __END__
14             =pod
15              
16             =head1 NAME
17              
18             MooseX::MultiObject::Role - role that a MultiObject does
19              
20             =head1 VERSION
21              
22             version 0.01
23              
24             =head1 AUTHOR
25              
26             Jonathan Rockway <jrockway@cpan.org>
27              
28             =head1 COPYRIGHT AND LICENSE
29              
30             This software is copyright (c) 2010 by Jonathan Rockway.
31              
32             This is free software; you can redistribute it and/or modify it under
33             the same terms as the Perl 5 programming language system itself.
34              
35             =cut
36