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             $Acme::FixIO::VERSION = '0.02';
3 1     1   571 use strict;
  1         1  
  1         37  
4 1     1   4 use warnings;
  1         1  
  1         97  
5              
6             require Exporter;
7             our @ISA = qw(Exporter);
8             our @EXPORT = qw();
9             our @EXPORT_OK = qw();
10              
11 1     1   3 binmode(STDOUT, ':unix:encoding(utf8):crlf') or die "Can't binmode STDOUT because $!";
  1         1  
  1         7  
12             binmode(STDERR, ':unix:encoding(utf8):crlf') or die "Can't binmode STDERR because $!";
13              
14             1;
15              
16             __END__