File Coverage

blib/lib/HTML/Blitz/ActionType.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             # This code can be redistributed and modified under the terms of the GNU
2             # General Public License as published by the Free Software Foundation, either
3             # version 3 of the License, or (at your option) any later version.
4             # See the "COPYING" file for details.
5             package HTML::Blitz::ActionType;
6 11     11   91 use HTML::Blitz::pragma;
  11         23  
  11         93  
7 11     11   5629 use Exporter qw(import);
  11         28  
  11         670  
8 11         113 use HTML::Blitz::Atom our @EXPORT_OK = qw(
9             AT_REPLACE_OUTER
10             AT_REPLACE_INNER
11             AT_REPEAT_OUTER
12             AT_REMOVE_IF
13              
14             AT_AS_REPLACE_ATTRS
15             AT_AS_MODIFY_ATTRS
16              
17             AT_A_REMOVE_ATTR
18             AT_A_SET_ATTR
19             AT_A_MODIFY_ATTR
20              
21             AT_P_IMMEDIATE
22             AT_P_VARIABLE
23             AT_P_TRANSFORM
24             AT_P_FRAGMENT
25             AT_P_VARHTML
26 11     11   75 );
  11         55  
27              
28             our $VERSION = '0.08';
29              
30             1