File Coverage

blib/lib/Catmandu/Fix/nothing.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 15 16 93.7


line stmt bran cond sub pod time code
1              
2             use Catmandu::Sane;
3 2     2   104214  
  2         4  
  2         13  
4             our $VERSION = '1.2018';
5              
6             use Moo;
7 2     2   13 use namespace::clean;
  2         4  
  2         8  
8 2     2   671  
  2         4  
  2         9  
9             with 'Catmandu::Fix::Base';
10              
11             my ($self, $fixer, $label) = @_;
12             "last ${label};";
13 2     2 0 7 }
14 2         6  
15             1;
16              
17              
18             =pod
19              
20             =head1 NAME
21              
22             Catmandu::Fix::nothing - does nothing (for testing)
23              
24             =head1 SYNOPSIS
25              
26             nothing()
27              
28             =head1 SEE ALSO
29              
30             L<Catmandu::Fix>
31              
32             =cut