File Coverage

/tmp/pyOqfcyjdh.mite.pm
Criterion Covered Total %
statement 61 81 75.3
branch 17 40 42.5
condition 6 27 22.2
subroutine 13 14 92.8
pod n/a
total 97 162 59.8


line stmt bran cond sub pod time code
1             {
2             package MyTest;
3 1     1   6 use strict;
  1         2  
  1         30  
4 1     1   4 use warnings;
  1         1  
  1         30  
5 1     1   5 no warnings qw( once void );
  1         1  
  1         163  
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         2 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
14             package Mite::Shim;
15 1     1   6 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 2         9 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         58 );
25             };
26             };
27              
28             # Gather metadata for constructor and destructor
29             sub __META__ {
30 1     1   5 no strict 'refs';
  1         2  
  1         663  
31 1   33 1   3 my $class = shift; $class = ref($class) || $class;
  1         5  
32 1         5 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         5 map { "$_\::BUILD" } reverse @$linear_isa
37             ],
38             DEMOLISH => [
39 1 50       2 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  1         20  
  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   189 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       4 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 foo
57             # has declaration, file ../../../../tmp/pyOqfcyjdh, line 3
58 1 50       12 $self->{"foo"} = ( exists( $args->{"foo"} ) ? $args->{"foo"} : "99" );
59              
60             # Attribute bar
61             # has declaration, file ../../../../tmp/pyOqfcyjdh, line 4
62 1 50       4 if ( exists $args->{"bar"} ) { $self->{"bar"} = $args->{"bar"}; } ;
  0         0  
63              
64              
65             # Call BUILD methods
66 1 50 33     6 $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
  1 50       7  
67              
68             # Unrecognized parameters
69 1 50       2 my @unknown = grep not( /\A(?:bar|foo)\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
  1         5  
  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   593 my $self = shift;
84 1   33     3 my $class = ref( $self ) || $self;
85 1   33     4 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
86 1 50       5 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         4  
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         2  
  1         457  
96 0 0       0 die $e if $e; # rethrow
97             }
98 1         14 return;
99             }
100              
101             my $__XS = !$ENV{PERL_ONLY} && eval { require Class::XSAccessor; Class::XSAccessor->VERSION("1.19") };
102              
103             # Accessors for bar
104             # has declaration, file ../../../../tmp/pyOqfcyjdh, line 4
105 1 50   1   2842 sub bar { @_ == 1 or Mite::Shim::croak( 'Reader "bar" usage: $self->bar()' ); ( exists($_[0]{"bar"}) ? $_[0]{"bar"} : ( $_[0]{"bar"} = $_[0]->_build_bar ) ) }
  1 50       5  
106              
107             # Accessors for foo
108             # has declaration, file ../../../../tmp/pyOqfcyjdh, line 3
109             if ( $__XS ) {
110             Class::XSAccessor->import(
111             chained => 1,
112             "getters" => { "foo" => "foo" },
113             );
114             }
115             else {
116             *foo = sub { @_ == 1 or Mite::Shim::croak( 'Reader "foo" usage: $self->foo()' ); $_[0]{"foo"} };
117             }
118              
119              
120             # See UNIVERSAL
121             sub DOES {
122 7     7   13 my ( $self, $role ) = @_;
123 7         7 our %DOES;
124 7 50       14 return $DOES{$role} if exists $DOES{$role};
125 7 50       11 return 1 if $role eq __PACKAGE__;
126 7 50 0     13 if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
      33        
127 0 0 0     0 $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
128             }
129 7         39 return $self->SUPER::DOES( $role );
130             }
131              
132             # Alias for Moose/Moo-compatibility
133             sub does {
134 7     7   2106 shift->DOES( @_ );
135             }
136              
137             1;
138             }