File Coverage

blib/lib/Sub/Assert/Nothing.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 1 1 100.0
total 23 23 100.0


line stmt bran cond sub pod time code
1             package Sub::Assert::Nothing;
2            
3 1     1   23136 use 5.006;
  1         5  
  1         42  
4 1     1   6 use strict;
  1         3  
  1         39  
5 1     1   6 use warnings;
  1         2  
  1         80  
6            
7             require Exporter;
8            
9             our @ISA = qw(Exporter);
10            
11             our @EXPORT = qw(
12             &assert
13             );
14 1     1   25 use vars qw/$VERSION/;
  1         3  
  1         83  
15             $VERSION = '1.23';
16            
17 1     1   6 use Carp qw/croak carp/;
  1         2  
  1         123  
18            
19            
20 3     3 1 18 sub assert {
21             }
22            
23             1;
24             __END__