File Coverage

blib/lib/MooseX/SlurpyConstructor/Trait/ApplicationToClass.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 10 100.0


line stmt bran cond sub pod time code
1             package MooseX::SlurpyConstructor::Trait::ApplicationToClass;
2             BEGIN {
3 2     2   21427 $MooseX::SlurpyConstructor::Trait::ApplicationToClass::VERSION = '1.2';
4             }
5 2     2   20 use Moose::Role;
  2         4  
  2         22  
6              
7             around apply => sub {
8             my $orig = shift;
9             my $self = shift;
10             my ($role, $class) = @_;
11              
12             Moose::Util::MetaRole::apply_base_class_roles(
13             for => $class,
14             roles => ['MooseX::SlurpyConstructor::Role::Object'],
15             );
16              
17             $class = Moose::Util::MetaRole::apply_metaroles(
18             for => $class,
19             class_metaroles => {
20             class => [ 'MooseX::SlurpyConstructor::Trait::Class' ],
21             }
22             );
23              
24             $self->$orig( $role, $class );
25             };
26              
27 2     2   14450 no Moose::Role;
  2         5  
  2         14  
28              
29             1;
30              
31              
32              
33             =pod
34              
35             =head1 NAME
36              
37             MooseX::SlurpyConstructor::Trait::ApplicationToClass
38              
39             =head1 VERSION
40              
41             version 1.2
42              
43             =head1 AUTHORS
44              
45             =over 4
46              
47             =item *
48              
49             Mark Morgan <makk384@gmail.com>
50              
51             =item *
52              
53             Karen Etheridge <ether@cpan.org>
54              
55             =back
56              
57             =head1 COPYRIGHT AND LICENSE
58              
59             This software is copyright (c) 2011 by Karen Etheridge.
60              
61             This is free software; you can redistribute it and/or modify it under
62             the same terms as the Perl 5 programming language system itself.
63              
64             =cut
65              
66              
67             __END__
68