File Coverage

blib/lib/File/Raw/JSON.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package File::Raw::JSON;
2              
3 29     29   2854158 use 5.010;
  29         93  
4 29     29   133 use strict;
  29         170  
  29         673  
5 29     29   119 use warnings;
  29         52  
  29         1699  
6              
7             our $VERSION = '0.03';
8              
9 29     29   3072 use File::Raw;
  29         5495  
  29         696  
10 29     29   11841 use Tie::OrderedHash;
  29         54516  
  29         2007  
11              
12             require XSLoader;
13             XSLoader::load('File::Raw::JSON', $VERSION);
14              
15             1;
16              
17             __END__