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   1867 if ( ord("A") == 193 ) {
4             die "Encode::TW not supported on EBCDIC\n";
5             }
6             }
7 8     8   63 use strict;
  8         23  
  8         232  
8 8     8   56 use warnings;
  8         28  
  8         291  
9 8     8   60 use Encode;
  8         24  
  8         1286  
10             our $VERSION = do { my @r = ( q$Revision: 2.3 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
11 8     8   68 use XSLoader;
  8         24  
  8         372  
12             XSLoader::load( __PACKAGE__, $VERSION );
13              
14             1;
15             __END__