File Coverage

blib/lib/Raisin/Decoder.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1             #!perl
2             #PODNAME: Raisin::Decoder
3             #ABSTRACT: A helper for L over decoder modules
4              
5 13     13   529 use strict;
  13         26  
  13         483  
6 13     13   72 use warnings;
  13         26  
  13         584  
7              
8             package Raisin::Decoder;
9             $Raisin::Decoder::VERSION = '0.93';
10 13     13   74 use parent 'Raisin::Encoder';
  13         25  
  13         79  
11              
12             sub builtin {
13             {
14 28     28 1 131 json => 'Raisin::Encoder::JSON',
15             yaml => 'Raisin::Encoder::YAML',
16             };
17             }
18              
19             1;
20              
21             __END__