File Coverage

blib/lib/Minilla/CLI/Migrate.pm
Criterion Covered Total %
statement 15 18 83.3
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 1 0.0
total 20 25 80.0


line stmt bran cond sub pod time code
1             package Minilla::CLI::Migrate;
2 1     1   948 use strict;
  1         3  
  1         42  
3 1     1   7 use warnings;
  1         2  
  1         24  
4 1     1   7 use utf8;
  1         2  
  1         5  
5              
6 1     1   26 use Minilla::Util qw(check_git slurp spew);
  1         3  
  1         49  
7 1     1   16 use Minilla::Migrate;
  1         2  
  1         79  
8              
9             sub run {
10 0     0 0   my ($self, @args) = @_;
11              
12 0           check_git;
13              
14 0           Minilla::Migrate->new()->run;
15             }
16              
17             1;
18             __END__