File Coverage

/tmp/c4d3Ao5RWk.mite.pm
Criterion Covered Total %
statement 69 89 77.5
branch 23 46 50.0
condition 7 27 25.9
subroutine 14 15 93.3
pod n/a
total 113 177 63.8


line stmt bran cond sub pod time code
1             {
2             package MyTest2;
3 1     1   20 use strict;
  1         9  
  1         101  
4 1     1   22 use warnings;
  1         14  
  1         519  
5 1     1   32 no warnings qw( once void );
  1         8  
  1         524  
6              
7             our $USES_MITE = "Mite::Class";
8             our $MITE_SHIM = "Mite::Shim";
9             our $MITE_VERSION = "0.012000";
10             # Mite keywords
11             BEGIN {
12 1     1   32 my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest2" );
13 1         6 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
14             package Mite::Shim;
15 1     1   30 no warnings 'redefine';
  1         3  
  1         428  
16             (
17 0         0 sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) },
18 0         0 sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) },
19 0         0 sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) },
20             sub {},
21 2         29 sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
22 0         0 sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
23 0         0 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
24 1         65 );
25             };
26             };
27              
28             # Gather metadata for constructor and destructor
29             sub __META__ {
30 1     1   30 no strict 'refs';
  1         3  
  1         1556  
31 1   33 1   4 my $class = shift; $class = ref($class) || $class;
  1         12  
32 1         8 my $linear_isa = mro::get_linear_isa( $class );
33             return {
34             BUILD => [
35 1 50       2 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  1         26  
  0         0  
36 1         6 map { "$_\::BUILD" } reverse @$linear_isa
37             ],
38             DEMOLISH => [
39 1 50       3 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  1         21  
  0         0  
40 1         4 map { "$_\::DEMOLISH" } @$linear_isa
  1         5  
41             ],
42             HAS_BUILDARGS => $class->can('BUILDARGS'),
43             HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
44             };
45             }
46              
47              
48             # Standard Moose/Moo-style constructor
49             sub new {
50 2 50   2   297 my $class = ref($_[0]) ? ref(shift) : shift;
51 2   66     27 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
52 2         7 my $self = bless {}, $class;
53 2 50       18 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
  0 50       0  
54 2         7 my $no_build = delete $args->{__no_BUILD__};
55              
56             # Attribute attr
57             # has declaration, file ../../../../tmp/c4d3Ao5RWk, line 3
58 2 100       7 if ( exists $args->{"attr"} ) { $self->{"attr"} = $args->{"attr"}; $self->_trigger_attr( $self->{"attr"} ); } ;
  1         7  
  1         4  
59              
60             # Attribute log
61             # has declaration, file ../../../../tmp/c4d3Ao5RWk, line 11
62 2 50       7 if ( exists $args->{"log"} ) { $self->{"log"} = $args->{"log"}; } ;
  0         0  
63              
64              
65             # Call BUILD methods
66 2 50 33     9 $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
  2 50       10  
67              
68             # Unrecognized parameters
69 2 50       23 my @unknown = grep not( /\A(?:attr|log)\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
  2         19  
  2         7  
70              
71 2         24 return $self;
72             }
73              
74             # Used by constructor to call BUILD methods
75             sub BUILDALL {
76 0     0   0 my $class = ref( $_[0] );
77 0   0     0 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
78 0 0       0 $_->( @_ ) for @{ $meta->{BUILD} || [] };
  0         0  
79             }
80              
81             # Destructor should call DEMOLISH methods
82             sub DESTROY {
83 2     2   6077 my $self = shift;
84 2   33     12 my $class = ref( $self ) || $self;
85 2   33     7 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
86 2 50       10 my $in_global_destruction = defined ${^GLOBAL_PHASE}
87             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
88             : Devel::GlobalDestruction::in_global_destruction();
89 2 50       4 for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
  2         8  
90 0         0 my $e = do {
91 0         0 local ( $?, $@ );
92 0         0 eval { $demolisher->( $self, $in_global_destruction ) };
  0         0  
93 0         0 $@;
94             };
95 1     1   14 no warnings 'misc'; # avoid (in cleanup) warnings
  1         13  
  1         867  
96 0 0       0 die $e if $e; # rethrow
97             }
98 2         28 return;
99             }
100              
101             my $__XS = !$ENV{PERL_ONLY} && eval { require Class::XSAccessor; Class::XSAccessor->VERSION("1.19") };
102              
103             # Accessors for attr
104             # has declaration, file ../../../../tmp/c4d3Ao5RWk, line 3
105 5 50   5   589 sub attr { @_ > 1 ? do { my @oldvalue; @oldvalue = $_[0]{"attr"} if exists $_[0]{"attr"}; $_[0]{"attr"} = $_[1]; $_[0]->_trigger_attr( $_[0]{"attr"}, @oldvalue ); $_[0]; } : ( ( exists($_[0]{"attr"}) ? $_[0]{"attr"} : ( $_[0]{"attr"} = "default" ) ) ) }
  4 50       7  
  4 100       16  
  4         8  
  4         15  
  4         10  
106              
107             # Accessors for log
108             # has declaration, file ../../../../tmp/c4d3Ao5RWk, line 11
109 7 50   7   20 sub log { @_ == 1 or Mite::Shim::croak( 'Reader "log" usage: $self->log()' ); ( exists($_[0]{"log"}) ? $_[0]{"log"} : ( $_[0]{"log"} = $MyTest2::__log_DEFAULT__->( $_[0] ) ) ) }
  7 100       147  
110              
111              
112             # See UNIVERSAL
113             sub DOES {
114 7     7   24 my ( $self, $role ) = @_;
115 7         10 our %DOES;
116 7 50       25 return $DOES{$role} if exists $DOES{$role};
117 7 50       20 return 1 if $role eq __PACKAGE__;
118 7 50 0     29 if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
      33        
119 0 0 0     0 $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
120             }
121 7         76 return $self->SUPER::DOES( $role );
122             }
123              
124             # Alias for Moose/Moo-compatibility
125             sub does {
126 7     7   1705 shift->DOES( @_ );
127             }
128              
129             1;
130             }