File Coverage

blib/lib/Data/Decode/Encode/Guess/JP.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package Data::Decode::Encode::Guess::JP;
2 3     3   9259 use Moose;
  0            
  0            
3             use namespace::clean -except => qw(meta);
4              
5             extends 'Data::Decode::Encode::Guess';
6              
7             sub _build_encodings {
8             return [ qw(shiftjis euc-jp 7bit-jis utf8) ];
9             }
10              
11             1;
12              
13             __END__
14              
15             =head1 NAME
16              
17             Data::Decode::Encode::Guess::JP - Generic Encode::Guess For Japanese Encodings
18              
19             =head1 SYNOPSIS
20              
21             Data::Decode->new(
22             decoder => Data::Decode::Encode::Guess::JP->new()
23             );
24              
25             =head1 METHODS
26              
27             =head2 new
28              
29             =cut