File Coverage

blib/lib/Encode/IBM.pm
Criterion Covered Total %
statement 27 30 90.0
branch 1 2 50.0
condition n/a
subroutine 8 8 100.0
pod n/a
total 36 40 90.0


line stmt bran cond sub pod time code
1             package Encode::IBM;
2            
3 1     1   32218 use 5.008;
  1         4  
  1         40  
4 1     1   6 use strict;
  1         3  
  1         30  
5 1     1   18 use Encode;
  1         2  
  1         77  
6 1     1   567 use Encode::IBM::835SOSI;
  1         3  
  1         28  
7 1     1   668 use Encode::IBM::835SOSI::TSGH;
  1         3  
  1         31  
8 1     1   626 use Encode::IBM::947SOSI;
  1         2  
  1         35  
9 1     1   626 use Encode::IBM::939SOSI;
  1         2  
  1         121  
10              
11             BEGIN {
12 1     1   4 our $VERSION = '0.11';
13              
14 1         2 local $@;
15             eval {
16 1         5 require XSLoader;
17 1         3527 XSLoader::load(__PACKAGE__, $VERSION);
18 1         187 1;
19 1 50       2 } or do {
20 0           require DynaLoader;
21 0           push our @ISA, 'DynaLoader';
22 0           __PACKAGE__->bootstrap($VERSION);
23             };
24             };
25              
26             1;
27              
28             __END__