File Coverage

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


line stmt bran cond sub pod time code
1 11     11   1147 use 5.006; # our
  11         29  
  11         371  
2 11     11   60 use strict;
  11         12  
  11         280  
3 11     11   42 use warnings;
  11         14  
  11         731  
4              
5             package CPAN::Changes::Markdown::Filter::NodeUtil;
6              
7             # ABSTRACT: short-hand node construction functions
8              
9             our $VERSION = '1.000001';
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   571 use Sub::Exporter::Progressive -setup => { exports => [qw( mk_node_plaintext mk_node_delimitedtext )] };
  11         910  
  11         102  
33              
34              
35              
36              
37              
38             ## no critic ( RequireArgUnpacking )
39              
40             sub mk_node_plaintext {
41 124     124 1 2569 require CPAN::Changes::Markdown::Filter::Node::PlainText;
42 124         347 return CPAN::Changes::Markdown::Filter::Node::PlainText->create(@_);
43             }
44              
45              
46              
47              
48              
49             sub mk_node_delimitedtext {
50 40     40 1 2320 require CPAN::Changes::Markdown::Filter::Node::DelimitedText;
51 40         112 return CPAN::Changes::Markdown::Filter::Node::DelimitedText->create(@_);
52             }
53              
54             1;
55              
56             __END__