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   2536289 use 5.010;
  29         91  
4 29     29   119 use strict;
  29         174  
  29         651  
5 29     29   153 use warnings;
  29         38  
  29         1739  
6              
7             our $VERSION = '0.04';
8              
9 29     29   3297 use File::Raw;
  29         5969  
  29         658  
10 29     29   10677 use Tie::OrderedHash;
  29         50633  
  29         1823  
11              
12             require XSLoader;
13             XSLoader::load('File::Raw::JSON', $VERSION);
14              
15             1;
16              
17             __END__