File Coverage

blib/lib/PONAPI/Builder/Resource/Null.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 10 11 90.9


line stmt bran cond sub pod time code
1             # ABSTRACT: document builder - null resource
2             package PONAPI::Builder::Resource::Null;
3              
4 24     24   170066 use Moose;
  24         343130  
  24         229  
5              
6             with 'PONAPI::Builder';
7              
8 8     8 0 33 sub build { undef }
9              
10             __PACKAGE__->meta->make_immutable;
11 24     24   163629 no Moose; 1;
  24         55  
  24         138  
12              
13             __END__
14              
15             =pod
16              
17             =encoding UTF-8
18              
19             =head1 NAME
20              
21             PONAPI::Builder::Resource::Null - document builder - null resource
22              
23             =head1 VERSION
24              
25             version 0.002006
26              
27             =head1 AUTHORS
28              
29             =over 4
30              
31             =item *
32              
33             Mickey Nasriachi <mickey@cpan.org>
34              
35             =item *
36              
37             Stevan Little <stevan@cpan.org>
38              
39             =item *
40              
41             Brian Fraser <hugmeir@cpan.org>
42              
43             =back
44              
45             =head1 COPYRIGHT AND LICENSE
46              
47             This software is copyright (c) 2016 by Mickey Nasriachi, Stevan Little, Brian Fraser.
48              
49             This is free software; you can redistribute it and/or modify it under
50             the same terms as the Perl 5 programming language system itself.
51              
52             =cut