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             package Catmandu::Fix::nothing;
2              
3 2     2   104060 use Catmandu::Sane;
  2         5  
  2         12  
4              
5             our $VERSION = '1.2020';
6              
7 2     2   14 use Moo;
  2         5  
  2         16  
8 2     2   720 use namespace::clean;
  2         6  
  2         36  
9              
10             with 'Catmandu::Fix::Base';
11              
12             sub emit {
13 2     2 0 6 my ($self, $fixer, $label) = @_;
14 2         9 "last ${label};";
15             }
16              
17             1;
18              
19             __END__
20              
21             =pod
22              
23             =head1 NAME
24              
25             Catmandu::Fix::nothing - does nothing (for testing)
26              
27             =head1 SYNOPSIS
28              
29             nothing()
30              
31             =head1 SEE ALSO
32              
33             L<Catmandu::Fix>
34              
35             =cut