File Coverage

blib/lib/Mite/App/Command/clean.pm
Criterion Covered Total %
statement 18 18 100.0
branch 1 2 50.0
condition n/a
subroutine 6 6 100.0
pod 0 2 0.0
total 25 28 89.2


line stmt bran cond sub pod time code
1 16     16   12658 use 5.010001;
  16         63  
2 16     16   97 use strict;
  16         39  
  16         480  
3 16     16   99 use warnings;
  16         34  
  16         1170  
4              
5             use Mite::Miteception -all;
6 16     16   106 extends qw(Mite::App::Command);
  16         50  
  16         140  
7              
8             our $AUTHORITY = 'cpan:TOBYINK';
9             our $VERSION = '0.011000';
10              
11             return "Remove compiled mite files.";
12             }
13 16     16 0 87  
14             my $self = shift;
15              
16             return 0 if $self->should_exit_quietly;
17 1     1 0 4  
18             my $project = $self->project;
19 1 50       11 $project->clean_mites;
20             $project->clean_shim;
21 1         89  
22 1         28 return 0;
23 1         7 }
24              
25 1         122 1;