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.1104';
3 3     3   28 use strict;
  3         7  
  3         106  
4 3     3   17 use warnings;
  3         7  
  3         282  
5              
6             sub perl_plan_prefix_regex
7             {
8 4     4 1 38 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__