File Coverage

blib/lib/RxPerl.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 27 27 100.0


line stmt bran cond sub pod time code
1             package RxPerl;
2 5     5   234384 use 5.010;
  5         23  
3 5     5   27 use strict;
  5         13  
  5         104  
4 5     5   22 use warnings;
  5         8  
  5         130  
5              
6 5     5   2513 use RxPerl::Operators::Creation ':all';
  5         36  
  5         1046  
7 5     5   3462 use RxPerl::Operators::Pipeable ':all';
  5         14  
  5         1999  
8 5     5   2130 use RxPerl::Functions ':all';
  5         13  
  5         523  
9              
10 5     5   37 use Exporter 'import';
  5         11  
  5         415  
11             our @EXPORT_OK = (
12             @RxPerl::Operators::Creation::EXPORT_OK,
13             @RxPerl::Operators::Pipeable::EXPORT_OK,
14             @RxPerl::Functions::EXPORT_OK,
15             );
16             our %EXPORT_TAGS = (all => \@EXPORT_OK);
17              
18             our $VERSION = "v6.28.0";
19              
20             1;
21             __END__