File Coverage

blib/lib/Test/Class/WithStrictPlan.pm
Criterion Covered Total %
statement 12 14 85.7
branch n/a
condition n/a
subroutine 5 7 71.4
pod 2 2 100.0
total 19 23 82.6


line stmt bran cond sub pod time code
1             # Copyright (c) 2017 by Pali
2              
3             package Test::Class::WithStrictPlan;
4              
5 1     1   73152 use 5.006;
  1         4  
6 1     1   5 use strict;
  1         3  
  1         20  
7 1     1   5 use warnings;
  1         2  
  1         66  
8              
9             our $VERSION = '0.2';
10              
11 1     1   551 use parent 'Test::Class';
  1         318  
  1         5  
12 1     1   22625 BEGIN { Test::Class->VERSION('0.51') }
13 0     0 1   sub fail_if_returned_early { 1 }
14 0     0 1   sub fail_if_returned_late { 1 }
15              
16             1;
17             __END__