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   11303 use 5.010001;
  16         50  
2 16     16   90 use strict;
  16         31  
  16         412  
3 16     16   90 use warnings;
  16         55  
  16         818  
4              
5             use Mite::Miteception -all;
6 16     16   111 extends qw(Mite::App::Command);
  16         28  
  16         130  
7              
8             our $AUTHORITY = 'cpan:TOBYINK';
9             our $VERSION = '0.010008';
10              
11             return "Remove compiled mite files.";
12             }
13 16     16 0 72  
14             my $self = shift;
15              
16             return 0 if $self->should_exit_quietly;
17 1     1 0 1  
18             my $project = $self->project;
19 1 50       7 $project->clean_mites;
20             $project->clean_shim;
21 1         91  
22 1         27 return 0;
23 1         4 }
24              
25 1         106 1;