File Coverage

blib/lib/Encode/TW.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             package Encode::TW;
2             BEGIN {
3 8     8   1374 if ( ord("A") == 193 ) {
4             die "Encode::TW not supported on EBCDIC\n";
5             }
6             }
7 8     8   42 use strict;
  8         16  
  8         177  
8 8     8   36 use warnings;
  8         17  
  8         184  
9 8     8   39 use Encode;
  8         15  
  8         926  
10             our $VERSION = do { my @r = ( q$Revision: 2.3 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
11 8     8   56 use XSLoader;
  8         21  
  8         296  
12             XSLoader::load( __PACKAGE__, $VERSION );
13              
14             1;
15             __END__