File Coverage

blib/lib/CPAN/Changes/Markdown/Filter/NodeUtil.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 2 2 100.0
total 23 23 100.0


line stmt bran cond sub pod time code
1 11     11   703 use 5.006; # our
  11         31  
2 11     11   50 use strict;
  11         17  
  11         261  
3 11     11   43 use warnings;
  11         16  
  11         828  
4              
5             package CPAN::Changes::Markdown::Filter::NodeUtil;
6              
7             # ABSTRACT: short-hand node construction functions
8              
9             our $VERSION = '1.000002';
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13              
14              
15              
16              
17              
18              
19              
20              
21              
22              
23              
24              
25              
26              
27              
28              
29              
30              
31              
32 11     11   563 use Sub::Exporter::Progressive -setup => { exports => [qw( mk_node_plaintext mk_node_delimitedtext )] };
  11         1063  
  11         107  
33              
34              
35              
36              
37              
38             ## no critic ( RequireArgUnpacking )
39              
40             sub mk_node_plaintext {
41 124     124 1 2771 require CPAN::Changes::Markdown::Filter::Node::PlainText;
42 124         326 return CPAN::Changes::Markdown::Filter::Node::PlainText->create(@_);
43             }
44              
45              
46              
47              
48              
49             sub mk_node_delimitedtext {
50 40     40 1 2485 require CPAN::Changes::Markdown::Filter::Node::DelimitedText;
51 40         107 return CPAN::Changes::Markdown::Filter::Node::DelimitedText->create(@_);
52             }
53              
54             1;
55              
56             __END__