File Coverage

corpus/rc/basic.pl
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1 1     1   331 use strict;
  1         3  
  1         25  
2 1     1   5 use warnings;
  1         3  
  1         113  
3              
4             print "package is @{[ __PACKAGE__ ]}\n";
5              
6             logx "hey";
7              
8             our $run_basic_pl;
9              
10             $run_basic_pl = 1;
11              
12             preload 'Foo::Bar';
13             postload 'Baz::Frooble';
14              
15             1;