File Coverage

blib/lib/Module/New/File/LoadTest.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Module::New::File::LoadTest;
2              
3 2     2   1088 use strict;
  2         2  
  2         88  
4 2     2   12 use warnings;
  2         3  
  2         61  
5 2     2   9 use Module::New::File;
  2         2  
  2         12  
6              
7             file 't/00_load.t' => content { return <<'EOT';
8             use strict;
9             use warnings;
10             use Test::UseAllModules;
11              
12             BEGIN { all_uses_ok(); }
13             EOT
14             };
15              
16             1;
17              
18             __END__