File Coverage

blib/lib/Mite/App/Command/clean.pm.mite.pm
Criterion Covered Total %
statement 37 53 69.8
branch 0 8 0.0
condition 0 9 0.0
subroutine 9 19 47.3
pod 0 2 0.0
total 46 91 50.5


line stmt bran cond sub pod time code
1             {
2              
3             use strict;
4 16     16   133 use warnings;
  16         48  
  16         578  
5 16     16   131 no warnings qw( once void );
  16         43  
  16         551  
6 16     16   98  
  16         32  
  16         2145  
7             our $USES_MITE = "Mite::Class";
8             our $MITE_SHIM = "Mite::Shim";
9             our $MITE_VERSION = "0.011000";
10              
11             # Mite keywords
12             BEGIN {
13             my ( $SHIM, $CALLER ) =
14 16     16   82 ( "Mite::Shim", "Mite::App::Command::clean" );
15             (
16             *after, *around, *before, *extends, *field,
17             *has, *param, *signature_for, *with
18             )
19             = do {
20 16         62  
21             no warnings 'redefine';
22             (
23 16     16   117 sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) },
  16         47  
  16         3616  
24             sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) },
25 0     0   0 sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) },
26 0     0   0 sub { },
27 0     0   0 sub { $SHIM->HANDLE_has( $CALLER, field => @_ ) },
28       16     sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
29 0     0   0 sub { $SHIM->HANDLE_has( $CALLER, param => @_ ) },
30 0     0   0 sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
31 0     0   0 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
32 0     0   0 );
33 0     0   0 }
34 16         3070  
35             # Mite imports
36             BEGIN {
37             require Scalar::Util;
38             *STRICT = \&Mite::Shim::STRICT;
39             *bare = \&Mite::Shim::bare;
40 16     16   126 *blessed = \&Scalar::Util::blessed;
41 16         68 *carp = \&Mite::Shim::carp;
42 16         37 *confess = \&Mite::Shim::confess;
43 16         57 *croak = \&Mite::Shim::croak;
44 16         49 *false = \&Mite::Shim::false;
45 16         35 *guard = \&Mite::Shim::guard;
46 16         36 *lazy = \&Mite::Shim::lazy;
47 16         44 *lock = \&Mite::Shim::lock;
48 16         44 *ro = \&Mite::Shim::ro;
49 16         46 *rw = \&Mite::Shim::rw;
50 16         46 *rwp = \&Mite::Shim::rwp;
51 16         53 *true = \&Mite::Shim::true;
52 16         33 *unlock = \&Mite::Shim::unlock;
53 16         33 }
54 16         42  
55 16         646 BEGIN {
56             require Mite::App::Command;
57              
58             use mro 'c3';
59 16     16   855 our @ISA;
60             push @ISA, "Mite::App::Command";
61 16     16   146 }
  16         34  
  16         112  
62 16         49  
63 16         3356 # See UNIVERSAL
64             my ( $self, $role ) = @_;
65             our %DOES;
66             return $DOES{$role} if exists $DOES{$role};
67             return 1 if $role eq __PACKAGE__;
68 0     0 0   if ( $INC{'Moose/Util.pm'}
69 0           and my $meta = Moose::Util::find_meta( ref $self or $self ) )
70 0 0         {
71 0 0         $meta->can('does_role') and $meta->does_role($role) and return 1;
72 0 0 0       }
      0        
73             return $self->SUPER::DOES($role);
74             }
75 0 0 0        
76             # Alias for Moose/Moo-compatibility
77 0           shift->DOES(@_);
78             }
79              
80             1;