File Coverage

blib/lib/Race/Condition.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 10 100.0


line stmt bran cond sub pod time code
1             package Race::Condition;
2              
3 1     1   51740 use strict;
  1         3  
  1         44  
4 1     1   6 use warnings;
  1         2  
  1         75  
5              
6             $Race::Condition::VERSION = '0.01';
7              
8             sub race::condition { # no op by default
9 1     1   877 return;
10             }
11              
12             1;
13              
14             __END__