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.97'; | ||||||
5 | 19 | 19 | 240 | use 5.006; | |||
19 | 85 | ||||||
6 | 19 | 19 | 68 | use strict; | |||
19 | 27 | ||||||
19 | 309 | ||||||
7 | 19 | 19 | 64 | use warnings; | |||
19 | 24 | ||||||
19 | 713 | ||||||
8 | |||||||
9 | use Class::XSAccessor | ||||||
10 | 19 | 98 | chained => 1, | ||||
11 | constructor => 'new', | ||||||
12 | accessors => [qw( ignore | ||||||
13 | ignorelines | ||||||
14 | usebitsets | ||||||
15 | 19 | 19 | 109 | )]; | |||
19 | 26 | ||||||
16 | |||||||
17 | 1; | ||||||
18 | |||||||
19 | __END__ |