File Coverage

/tmp/NhsKnB6FyV.mite.pm
Criterion Covered Total %
statement 61 82 74.3
branch 14 36 38.8
condition 6 27 22.2
subroutine 15 16 93.7
pod n/a
total 96 161 59.6


line stmt bran cond sub pod time code
1             {
2             package MyTest;
3 1     1   9 use strict;
  1         3  
  1         30  
4 1     1   5 use warnings;
  1         1  
  1         28  
5 1     1   5 no warnings qw( once void );
  1         1  
  1         134  
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   6 my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest" );
13 1         2 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
14             package Mite::Shim;
15 1     1   7 no warnings 'redefine';
  1         2  
  1         193  
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 0         0 sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
22 0         0 sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
23 1         9 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
24 1         68 );
25             };
26             };
27              
28             # Gather metadata for constructor and destructor
29             sub __META__ {
30 1     1   11 no strict 'refs';
  1         2  
  1         679  
31 1   33 1   2 my $class = shift; $class = ref($class) || $class;
  1         7  
32 1         6 my $linear_isa = mro::get_linear_isa( $class );
33             return {
34             BUILD => [
35 1 50       1 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  1         9  
  0         0  
36 1         4 map { "$_\::BUILD" } reverse @$linear_isa
37             ],
38             DEMOLISH => [
39 1 50       2 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  1         27  
  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   155 my $class = ref($_[0]) ? ref(shift) : shift;
51 1   33     8 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
52 1         3 my $self = bless {}, $class;
53 1 50       5 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
  0 50       0  
54 1         3 my $no_build = delete $args->{__no_BUILD__};
55              
56              
57              
58             # Call BUILD methods
59 1 50 33     3 $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
  1 50       5  
60              
61             # Unrecognized parameters
62 1 0       1 my @unknown = grep not( do { package MyTest::__SAFE_NAMESPACE__; defined($_) and do { ref(\$_) eq 'SCALAR' or ref(\(my $val = $_)) eq 'SCALAR' } } ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
  0 0       0  
  0 50       0  
  1         15  
  1         4  
63              
64 1         5 return $self;
65             }
66              
67             # Used by constructor to call BUILD methods
68             sub BUILDALL {
69 0     0   0 my $class = ref( $_[0] );
70 0   0     0 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
71 0 0       0 $_->( @_ ) for @{ $meta->{BUILD} || [] };
  0         0  
72             }
73              
74             # Destructor should call DEMOLISH methods
75             sub DESTROY {
76 1     1   579 my $self = shift;
77 1   33     27 my $class = ref( $self ) || $self;
78 1   33     8 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
79 1 50       6 my $in_global_destruction = defined ${^GLOBAL_PHASE}
80             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
81             : Devel::GlobalDestruction::in_global_destruction();
82 1 50       2 for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
  1         6  
83 0         0 my $e = do {
84 0         0 local ( $?, $@ );
85 0         0 eval { $demolisher->( $self, $in_global_destruction ) };
  0         0  
86 0         0 $@;
87             };
88 1     1   8 no warnings 'misc'; # avoid (in cleanup) warnings
  1         2  
  1         105  
89 0 0       0 die $e if $e; # rethrow
90             }
91 1         7 return;
92             }
93              
94              
95             BEGIN {
96 1     1   364 require Test::RoleTinyRole;
97            
98 1         1731 our %DOES = ( "MyTest" => 1, "Test::RoleTinyRole" => 1 );
99             }
100              
101             # See UNIVERSAL
102             sub DOES {
103 8     8   25 my ( $self, $role ) = @_;
104 8         10 our %DOES;
105 8 100       35 return $DOES{$role} if exists $DOES{$role};
106 7 50       12 return 1 if $role eq __PACKAGE__;
107 7 50 0     12 if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
      33        
108 0 0 0     0 $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
109             }
110 7         38 return $self->SUPER::DOES( $role );
111             }
112              
113             # Alias for Moose/Moo-compatibility
114             sub does {
115 7     7   2124 shift->DOES( @_ );
116             }
117              
118             # Methods from roles
119 1     1   4 sub foo { goto \&Test::RoleTinyRole::foo; }
120 1     1   573 sub quux { goto \&Test::RoleTinyRole::quux; }
121              
122             1;
123             }