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   227081 use 5.010;
  5         24  
3 5     5   36 use strict;
  5         11  
  5         101  
4 5     5   23 use warnings;
  5         9  
  5         126  
5              
6 5     5   2400 use RxPerl::Operators::Creation ':all';
  5         59  
  5         1164  
7 5     5   3358 use RxPerl::Operators::Pipeable ':all';
  5         14  
  5         2103  
8 5     5   2337 use RxPerl::Functions ':all';
  5         13  
  5         516  
9              
10 5     5   34 use Exporter 'import';
  5         11  
  5         433  
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.0";
19              
20             1;
21             __END__