blib/lib/TAP/DOM/Config.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 11 | 11 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 4 | 4 | 100.0 |
pod | n/a | ||
total | 15 | 15 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package TAP::DOM::Config; | ||||||
2 | our $AUTHORITY = 'cpan:SCHWIGON'; | ||||||
3 | # ABSTRACT: Accessors for TAP::DOM specific parse config | ||||||
4 | $TAP::DOM::Config::VERSION = '0.98'; | ||||||
5 | 19 | 19 | 304 | use 5.006; | |||
19 | 60 | ||||||
6 | 19 | 19 | 90 | use strict; | |||
19 | 37 | ||||||
19 | 430 | ||||||
7 | 19 | 19 | 86 | use warnings; | |||
19 | 31 | ||||||
19 | 1007 | ||||||
8 | |||||||
9 | use Class::XSAccessor | ||||||
10 | 19 | 134 | chained => 1, | ||||
11 | constructor => 'new', | ||||||
12 | accessors => [qw( ignore | ||||||
13 | ignorelines | ||||||
14 | usebitsets | ||||||
15 | 19 | 19 | 145 | )]; | |||
19 | 40 | ||||||
16 | |||||||
17 | 1; | ||||||
18 | |||||||
19 | __END__ |