File Coverage

blib/lib/MooseX/MultiObject/Meta/Class.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::Meta::Class;
2             BEGIN {
3 1     1   3282 $MooseX::MultiObject::Meta::Class::VERSION = '0.01';
4             }
5             # ABSTRACT: metarole for MultiObject metaclass
6 1     1   8 use Moose::Role;
  1         1  
  1         9  
7 1     1   4861 use true;
  1         3  
  1         9  
8 1     1   1480 use namespace::autoclean;
  1         3  
  1         10  
9              
10             has 'set_attribute_name' => (
11             reader => 'get_set_attribute_name',
12             writer => 'set_set_attribute_name',
13             predicate => 'has_set_attribute_name',
14             isa => 'Str',
15             );
16              
17             __END__
18             =pod
19              
20             =head1 NAME
21              
22             MooseX::MultiObject::Meta::Class - metarole for MultiObject metaclass
23              
24             =head1 VERSION
25              
26             version 0.01
27              
28             =head1 AUTHOR
29              
30             Jonathan Rockway <jrockway@cpan.org>
31              
32             =head1 COPYRIGHT AND LICENSE
33              
34             This software is copyright (c) 2010 by Jonathan Rockway.
35              
36             This is free software; you can redistribute it and/or modify it under
37             the same terms as the Perl 5 programming language system itself.
38              
39             =cut
40