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   183013 use 5.010;
  5         44  
3 5     5   23 use strict;
  5         6  
  5         94  
4 5     5   20 use warnings;
  5         7  
  5         104  
5              
6 5     5   1926 use RxPerl::Operators::Creation ':all';
  5         47  
  5         825  
7 5     5   2593 use RxPerl::Operators::Pipeable ':all';
  5         14  
  5         1609  
8 5     5   1813 use RxPerl::Functions ':all';
  5         12  
  5         455  
9              
10 5     5   29 use Exporter 'import';
  5         9  
  5         372  
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.27.1";
19              
20             1;
21             __END__