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.95'; | ||||||
5 | 19 | 19 | 246 | use 5.006; | |||
19 | 59 | ||||||
6 | 19 | 19 | 87 | use strict; | |||
19 | 27 | ||||||
19 | 343 | ||||||
7 | 19 | 19 | 71 | use warnings; | |||
19 | 32 | ||||||
19 | 801 | ||||||
8 | |||||||
9 | use Class::XSAccessor | ||||||
10 | 19 | 115 | chained => 1, | ||||
11 | constructor => 'new', | ||||||
12 | accessors => [qw( ignore | ||||||
13 | ignorelines | ||||||
14 | usebitsets | ||||||
15 | 19 | 19 | 120 | )]; | |||
19 | 58 | ||||||
16 | |||||||
17 | 1; | ||||||
18 | |||||||
19 | __END__ |