File Coverage

blib/lib/Data/Range/Compare/Stream/Constants.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Data::Range::Compare::Stream::Constants;
2              
3             require Exporter;
4              
5             our @ISA=qw(Exporter);
6              
7 18     18   38346 use constant RANGE_START =>0;
  18         35  
  18         1605  
8 18     18   108 use constant RANGE_END =>1;
  18         34  
  18         824  
9 18     18   95 use constant RANGE_DATA =>2;
  18         33  
  18         2077  
10              
11             our @EXPORT=qw(RANGE_START RANGE_END RANGE_DATA);
12              
13             our @EXPORT_OK=@EXPORT;
14              
15             1;