File Coverage

blib/lib/Acme/FixIO.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Acme::FixIO;
2              
3 1     1   767 use strict;
  1         2  
  1         37  
4 1     1   5 use warnings;
  1         2  
  1         134  
5              
6             require Exporter;
7             our @ISA = qw(Exporter);
8             our @EXPORT = qw();
9             our @EXPORT_OK = qw();
10             our $VERSION = '0.01';
11              
12 1     1   6 binmode(STDOUT, ':unix:encoding(utf8):crlf') or die "Can't binmode because $!";
  1         1  
  1         8  
13              
14             1;
15              
16             __END__