File Coverage

blib/lib/Data/Record/Serialize/Encode/null.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 5 8 62.5
pod 0 5 0.0
total 13 21 61.9


line stmt bran cond sub pod time code
1             package Data::Record::Serialize::Encode::null;
2              
3             # ABSTRACT: infinite bitbucket
4              
5 6     6   262367 use v5.12;
  6         25  
6 6     6   498 use Moo::Role;
  6         15399  
  6         44  
7              
8             our $VERSION = '2.02';
9              
10 6     6   3480 use namespace::clean;
  6         14328  
  6         54  
11              
12              
13              
14              
15              
16              
17              
18              
19              
20              
21             ## no critic ( Subroutines::ProhibitBuiltinHomonyms )
22             ## no critic( NamingConventions::ProhibitAmbiguousNames )
23              
24       0 0   sub encode { }
25       15 0   sub send { }
26       0 0   sub print { }
27       0 0   sub say { }
28       24 0   sub close { }
29              
30             with 'Data::Record::Serialize::Role::Encode';
31             with 'Data::Record::Serialize::Role::Sink';
32              
33             1;
34              
35             #
36             # This file is part of Data-Record-Serialize
37             #
38             # This software is Copyright (c) 2017 by Smithsonian Astrophysical Observatory.
39             #
40             # This is free software, licensed under:
41             #
42             # The GNU General Public License, Version 3, June 2007
43             #
44              
45             __END__