File Coverage

blib/lib/Git/Flux/Command/help.pm
Criterion Covered Total %
statement 9 12 75.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 13 17 76.4


line stmt bran cond sub pod time code
1             package Git::Flux::Command::help;
2              
3 5     5   3617 use strict;
  5         11  
  5         200  
4 5     5   27 use warnings;
  5         8  
  5         174  
5 5     5   28 use mixin::with 'Git::Flux';
  5         8  
  5         33  
6              
7             sub help {
8 0     0 1   my $self = shift;
9 0           print << '_END_HELP';
10             Gitflux help
11              
12             ... doesn't exist yet!
13             _END_HELP
14              
15 0           exit 0;
16             }
17              
18             1;
19              
20             __END__