File Coverage

blib/lib/Data/Rx/TypeBundle/Perl.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod 0 1 0.0
total 28 29 96.5


line stmt bran cond sub pod time code
1 1     1   24802 use strict;
  1         2  
  1         39  
2 1     1   5 use warnings;
  1         2  
  1         46  
3             package Data::Rx::TypeBundle::Perl;
4             {
5             $Data::Rx::TypeBundle::Perl::VERSION = '0.009';
6             }
7 1     1   5 use base 'Data::Rx::TypeBundle';
  1         1  
  1         107  
8             # ABSTRACT: experimental / perl types
9              
10 1     1   476 use Data::Rx::Type::Perl::Code;
  1         2  
  1         22  
11 1     1   452 use Data::Rx::Type::Perl::Obj;
  1         2  
  1         22  
12 1     1   542 use Data::Rx::Type::Perl::Ref;
  1         2  
  1         59  
13              
14              
15             sub _prefix_pairs {
16             return (
17 1     1   18844 perl => 'tag:codesimply.com,2008:rx/perl/',
18             );
19             }
20              
21             sub type_plugins {
22 1     1 0 23 return qw(
23             Data::Rx::Type::Perl::Code
24             Data::Rx::Type::Perl::Obj
25             Data::Rx::Type::Perl::Ref
26             );
27             }
28              
29             1;
30              
31             __END__