File Coverage

blib/lib/List/Maker/OtherModule.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 18 18 100.0


line stmt bran cond sub pod time code
1             package List::Maker::OtherModule;
2              
3 1     1   39619 use warnings;
  1         2  
  1         39  
4 1     1   6 use strict;
  1         2  
  1         38  
5 1     1   6 use Carp;
  1         1  
  1         210  
6              
7             our $VERSION = '0.002';
8              
9             sub _regular_glob {
10 1     1   1096 my @data = <1..10>;
11 1         8 return @data != 10;
12             }
13              
14             package main;
15              
16             sub _regular_glob {
17 1     1   21 my @data = <1..10>;
18 1         6 return @data != 10;
19             }
20              
21             1; # Magic true value required at end of module