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 9     9   59 use strict;
  9         21  
  9         264  
3 9     9   45 use warnings;
  9         68  
  9         262  
4 9     9   50 use Encode;
  9         75  
  9         1214  
5             our $VERSION = do { my @r = ( q$Revision: 2.4 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
6              
7 9     9   63 use XSLoader;
  9         19  
  9         336  
8             XSLoader::load( __PACKAGE__, $VERSION );
9              
10             1;
11             __END__