File Coverage

/tmp/F3eVTsxXaC.mite.pm
Criterion Covered Total %
statement 69 89 77.5
branch 20 44 45.4
condition 6 27 22.2
subroutine 14 15 93.3
pod n/a
total 109 175 62.2


line stmt bran cond sub pod time code
1             {
2             package MyTest;
3 1     1   6 use strict;
  1         2  
  1         29  
4 1     1   5 use warnings;
  1         2  
  1         29  
5 1     1   16 no warnings qw( once void );
  1         3  
  1         164  
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   4 my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest" );
13 1         3 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
14             package Mite::Shim;
15 1     1   7 no warnings 'redefine';
  1         1  
  1         192  
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         8 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         37 );
25             };
26             };
27              
28             # Gather metadata for constructor and destructor
29             sub __META__ {
30 1     1   6 no strict 'refs';
  1         2  
  1         710  
31 1   33 1   4 my $class = shift; $class = ref($class) || $class;
  1         6  
32 1         7 my $linear_isa = mro::get_linear_isa( $class );
33             return {
34             BUILD => [
35 1 50       2 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  1         7  
  0         0  
36 1         3 map { "$_\::BUILD" } reverse @$linear_isa
37             ],
38             DEMOLISH => [
39 1 50       1 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  1         14  
  0         0  
40 1         3 map { "$_\::DEMOLISH" } @$linear_isa
  1         3  
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 1 50   1   164 my $class = ref($_[0]) ? ref(shift) : shift;
51 1   33     6 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
52 1         2 my $self = bless {}, $class;
53 1 50       7 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
  0 50       0  
54 1         2 my $no_build = delete $args->{__no_BUILD__};
55              
56             # Attribute attr
57             # has declaration, file ../../../../tmp/F3eVTsxXaC, line 3
58 1 50       3 if ( exists $args->{"attr"} ) { $self->{"attr"} = $args->{"attr"}; $self->_trigger_attr( $self->{"attr"} ); } ;
  1         4  
  1         4  
59              
60             # Attribute log
61             # has declaration, file ../../../../tmp/F3eVTsxXaC, line 9
62 1 50       3 if ( exists $args->{"log"} ) { $self->{"log"} = $args->{"log"}; } ;
  0         0  
63              
64              
65             # Call BUILD methods
66 1 50 33     5 $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
  1 50       5  
67              
68             # Unrecognized parameters
69 1 50       2 my @unknown = grep not( /\A(?:attr|log)\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
  1         10  
  1         4  
70              
71 1         4 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 1     1   3639 my $self = shift;
84 1   33     5 my $class = ref( $self ) || $self;
85 1   33     4 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
86 1 50       4 my $in_global_destruction = defined ${^GLOBAL_PHASE}
87             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
88             : Devel::GlobalDestruction::in_global_destruction();
89 1 50       2 for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
  1         13  
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   7 no warnings 'misc'; # avoid (in cleanup) warnings
  1         1  
  1         501  
96 0 0       0 die $e if $e; # rethrow
97             }
98 1         11 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/F3eVTsxXaC, line 3
105 2 50   2   22 sub attr { @_ > 1 ? do { my @oldvalue; @oldvalue = $_[0]{"attr"} if exists $_[0]{"attr"}; $_[0]{"attr"} = $_[1]; $_[0]->_trigger_attr( $_[0]{"attr"}, @oldvalue ); $_[0]; } : ( $_[0]{"attr"} ) }
  2 50       3  
  2         7  
  2         7  
  2         8  
  2         4  
106              
107             # Accessors for log
108             # has declaration, file ../../../../tmp/F3eVTsxXaC, line 9
109 4 50   4   10 sub log { @_ == 1 or Mite::Shim::croak( 'Reader "log" usage: $self->log()' ); ( exists($_[0]{"log"}) ? $_[0]{"log"} : ( $_[0]{"log"} = $MyTest::__log_DEFAULT__->( $_[0] ) ) ) }
  4 100       31  
110              
111              
112             # See UNIVERSAL
113             sub DOES {
114 7     7   16 my ( $self, $role ) = @_;
115 7         7 our %DOES;
116 7 50       12 return $DOES{$role} if exists $DOES{$role};
117 7 50       12 return 1 if $role eq __PACKAGE__;
118 7 50 0     13 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         36 return $self->SUPER::DOES( $role );
122             }
123              
124             # Alias for Moose/Moo-compatibility
125             sub does {
126 7     7   2193 shift->DOES( @_ );
127             }
128              
129             1;
130             }