File Coverage

blib/lib/Encode/Byte.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Encode::Byte;
2 8     8   61 use strict;
  8         21  
  8         247  
3 8     8   43 use warnings;
  8         18  
  8         230  
4 8     8   41 use Encode;
  8         16  
  8         1087  
5             our $VERSION = do { my @r = ( q$Revision: 2.4 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
6              
7 8     8   56 use XSLoader;
  8         15  
  8         307  
8             XSLoader::load( __PACKAGE__, $VERSION );
9              
10             1;
11             __END__