File Coverage

blib/lib/Data/Record/Serialize/Sink/null.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 3 0.0
total 13 17 76.4


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