File Coverage

blib/lib/Mojo/Rx.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1             package Mojo::Rx;
2 2     2   467348 use 5.008001;
  2         13  
3 2     2   10 use strict;
  2         5  
  2         52  
4 2     2   12 use warnings;
  2         4  
  2         70  
5              
6 2     2   910 use Mojo::Rx::Operators::Creation ':all';
  2         6  
  2         342  
7 2     2   998 use Mojo::Rx::Operators::Pipeable ':all';
  2         5  
  2         308  
8              
9 2     2   16 use Exporter 'import';
  2         3  
  2         189  
10             our @EXPORT_OK = (
11             @Mojo::Rx::Operators::Creation::EXPORT_OK,
12             @Mojo::Rx::Operators::Pipeable::EXPORT_OK,
13             );
14             our %EXPORT_TAGS = (all => \@EXPORT_OK);
15              
16             our $VERSION = "v0.13.0";
17              
18             1;
19             __END__