File Coverage

blib/lib/MetaPOD/Format/JSON/v1_1.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 17 17 100.0


line stmt bran cond sub pod time code
1              
2 4     4   1134 use strict;
  4         8  
  4         150  
3 4     4   21 use warnings;
  4         8  
  4         208  
4              
5             package MetaPOD::Format::JSON::v1_1;
6             BEGIN {
7 4     4   115 $MetaPOD::Format::JSON::v1_1::AUTHORITY = 'cpan:KENTNL';
8             }
9             {
10             $MetaPOD::Format::JSON::v1_1::VERSION = '0.3.0';
11             }
12              
13             # ABSTRACT: MetaPOD::JSON v1 SPEC Implementation
14              
15              
16 4     4   774 use Moo;
  4         17025  
  4         26  
17              
18             extends 'MetaPOD::Format::JSON::v1';
19             with 'MetaPOD::Format::JSON::interface::v1_1';
20              
21              
22             sub features {
23 9     9 1 102 return qw( does inherits namespace interface );
24             }
25              
26             1;
27              
28             __END__