File Coverage

/tmp/rc4d3Ao5RW.mite.pm
Criterion Covered Total %
statement 76 95 80.0
branch 21 44 47.7
condition 13 45 28.8
subroutine 13 14 92.8
pod n/a
total 123 198 62.1


line stmt bran cond sub pod time code
1             {
2             package MyTest3;
3 2     2   26 use strict;
  2         2  
  2         138  
4 2     2   20 use warnings;
  2         14  
  2         234  
5 2     2   14 no warnings qw( once void );
  2         4  
  2         540  
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 2     2   20 my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest3" );
13 2         40 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
14             package Mite::Shim;
15 2     2   20 no warnings 'redefine';
  2         6  
  2         690  
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         32 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 2         144 );
25             };
26             };
27              
28             # Gather metadata for constructor and destructor
29             sub __META__ {
30 2     2   22 no strict 'refs';
  2         6  
  2         1974  
31 2   33 2   6 my $class = shift; $class = ref($class) || $class;
  2         12  
32 2         20 my $linear_isa = mro::get_linear_isa( $class );
33             return {
34             BUILD => [
35 2 50       10 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  2         36  
  0         0  
36 2         8 map { "$_\::BUILD" } reverse @$linear_isa
37             ],
38             DEMOLISH => [
39 2 50       4 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  2         62  
  0         0  
40 2         8 map { "$_\::DEMOLISH" } @$linear_isa
  2         10  
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 12 50   12   374 my $class = ref($_[0]) ? ref(shift) : shift;
51 12   66     46 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
52 12         28 my $self = bless {}, $class;
53 12 50       42 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
  0 50       0  
54 12         20 my $no_build = delete $args->{__no_BUILD__};
55              
56             # Attribute truthy (type: Bool)
57             # has declaration, file ../../../../tmp/rc4d3Ao5RW, line 8
58 12 100 33     14 do { my $value = exists( $args->{"truthy"} ) ? $args->{"truthy"} : $MyTest3::__truthy_DEFAULT__->( $self ); do { my $coerced_value = do { my $to_coerce = $value; ((!ref $to_coerce and (!defined $to_coerce or $to_coerce eq q() or $to_coerce eq '0' or $to_coerce eq '1'))) ? $to_coerce : ((!!1)) ? scalar(do { local $_ = $to_coerce; !!$_ }) : $to_coerce }; (!ref $coerced_value and (!defined $coerced_value or $coerced_value eq q() or $coerced_value eq '0' or $coerced_value eq '1')) or Mite::Shim::croak "Type check failed in constructor: %s should be %s", "truthy", "Bool"; $self->{"truthy"} = $coerced_value; }; };
  12 50 33     32  
  12 50 33     14  
  12         16  
  12         16  
  12         98  
  12         28  
  12         28  
  12         78  
  12         34  
59              
60              
61             # Call BUILD methods
62 12 50 33     28 $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
  12 50       48  
63              
64             # Unrecognized parameters
65 12 50       14 my @unknown = grep not( /\Atruthy\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
  12         46  
  12         28  
66              
67 12         62 return $self;
68             }
69              
70             # Used by constructor to call BUILD methods
71             sub BUILDALL {
72 0     0   0 my $class = ref( $_[0] );
73 0   0     0 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
74 0 0       0 $_->( @_ ) for @{ $meta->{BUILD} || [] };
  0         0  
75             }
76              
77             # Destructor should call DEMOLISH methods
78             sub DESTROY {
79 12     12   1182 my $self = shift;
80 12   33     36 my $class = ref( $self ) || $self;
81 12   33     34 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
82 12 50       46 my $in_global_destruction = defined ${^GLOBAL_PHASE}
83             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
84             : Devel::GlobalDestruction::in_global_destruction();
85 12 50       14 for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
  12         38  
86 0         0 my $e = do {
87 0         0 local ( $?, $@ );
88 0         0 eval { $demolisher->( $self, $in_global_destruction ) };
  0         0  
89 0         0 $@;
90             };
91 2     2   30 no warnings 'misc'; # avoid (in cleanup) warnings
  2         16  
  2         984  
92 0 0       0 die $e if $e; # rethrow
93             }
94 12         104 return;
95             }
96              
97             my $__XS = !$ENV{PERL_ONLY} && eval { require Class::XSAccessor; Class::XSAccessor->VERSION("1.19") };
98              
99             # Accessors for truthy
100             # has declaration, file ../../../../tmp/rc4d3Ao5RW, line 8
101 16 50 33 16   170 sub truthy { @_ > 1 ? do { my $value = do { my $to_coerce = $_[1]; ((!ref $to_coerce and (!defined $to_coerce or $to_coerce eq q() or $to_coerce eq '0' or $to_coerce eq '1'))) ? $to_coerce : ((!!1)) ? scalar(do { local $_ = $to_coerce; !!$_ }) : $to_coerce }; (!ref $value and (!defined $value or $value eq q() or $value eq '0' or $value eq '1')) or Mite::Shim::croak( "Type check failed in %s: value should be %s", "accessor", "Bool" ); $_[0]{"truthy"} = $value; $_[0]; } : ( $_[0]{"truthy"} ) }
  4 50 33     28  
  4 100 33     6  
  4         38  
  4         28  
  4         10  
  4         38  
  4         10  
  4         38  
102              
103              
104             # See UNIVERSAL
105             sub DOES {
106 14     14   22 my ( $self, $role ) = @_;
107 14         16 our %DOES;
108 14 50       38 return $DOES{$role} if exists $DOES{$role};
109 14 50       32 return 1 if $role eq __PACKAGE__;
110 14 50 0     44 if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
      33        
111 0 0 0     0 $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
112             }
113 14         86 return $self->SUPER::DOES( $role );
114             }
115              
116             # Alias for Moose/Moo-compatibility
117             sub does {
118 14     14   1700 shift->DOES( @_ );
119             }
120              
121             1;
122             }