File Coverage

blib/lib/PerlIO/if.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 18 18 100.0


line stmt bran cond sub pod time code
1             #
2             # This file is part of PerlIO-if
3             #
4             # This software is copyright (c) 2011 by Leon Timmermans.
5             #
6             # This is free software; you can redistribute it and/or modify it under
7             # the same terms as the Perl 5 programming language system itself.
8             #
9             package PerlIO::if;
10             BEGIN {
11 1     1   840 $PerlIO::if::VERSION = '0.003';
12             }
13 1     1   26 use 5.008;
  1         5  
  1         40  
14 1     1   5 use strict;
  1         1  
  1         61  
15 1     1   4 use warnings;
  1         2  
  1         29  
16              
17 1     1   5 use XSLoader;
  1         2  
  1         56  
18              
19             our $VERSION;
20             XSLoader::load(__PACKAGE__, $VERSION);
21              
22             1;
23              
24             #ABSTRACT: Push layers conditionally
25              
26              
27             __END__