File Coverage

blib/lib/Encode/CN.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 22 22 100.0


line stmt bran cond sub pod time code
1             package Encode::CN;
2             BEGIN {
3 9     9   1019 if ( ord("A") == 193 ) {
4             die "Encode::CN not supported on EBCDIC\n";
5             }
6             }
7 9     9   45 use strict;
  9         17  
  9         171  
8 9     9   35 use warnings;
  9         17  
  9         209  
9 9     9   39 use Encode;
  9         13  
  9         1077  
10             our $VERSION = do { my @r = ( q$Revision: 2.3 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
11 9     9   85 use XSLoader;
  9         21  
  9         287  
12             XSLoader::load( __PACKAGE__, $VERSION );
13              
14             # Relocated from Encode.pm
15              
16 9     9   2578 use Encode::CN::HZ;
  9         20  
  9         225  
17              
18             # use Encode::CN::2022_CN;
19              
20             1;
21             __END__