File Coverage

blib/lib/Encode/Detective.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Encode::Detective;
2             require Exporter;
3             @ISA = qw(Exporter);
4             @EXPORT_OK = qw/detect/;
5              
6 1     1   61287 use strict;
  1         3  
  1         36  
7 1     1   5 use warnings;
  1         2  
  1         26  
8              
9 1     1   5 use XSLoader;
  1         6  
  1         48  
10             our $VERSION = 0.06;
11             XSLoader::load 'Encode::Detective', $VERSION;
12              
13             1;
14              
15             __END__