File Coverage

blib/lib/Test/Count/Lib.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 1 1 100.0
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Test::Count::Lib;
2             $Test::Count::Lib::VERSION = '0.1105';
3 2     2   16 use strict;
  2         4  
  2         63  
4 2     2   10 use warnings;
  2         4  
  2         174  
5              
6             sub perl_plan_prefix_regex
7             {
8 4     4 1 29 return qr{(?:(?:use Test.*\btests)|(?:\s*plan tests))\s*=>\s*};
9             }
10              
11             1;
12              
13              
14             1; # End of Test::Count::Lib
15              
16             __END__