File Coverage

lib/CPAN/Changes/Markdown/Filter/NodeUtil.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 2 2 100.0
total 28 28 100.0


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