_build/lib/My/Builder.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 3 | 4 | 75.0 |
branch | 0 | 2 | 0.0 |
condition | n/a | ||
subroutine | 1 | 2 | 50.0 |
pod | 0 | 1 | 0.0 |
total | 4 | 9 | 44.4 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package My::Builder; | ||||||
2 | 2 | 2 | 74006 | use Module::Build; | |||
2 | 5 | ||||||
2 | 226 | ||||||
3 | @ISA = qw(Module::Build); | ||||||
4 | |||||||
5 | sub harness_switches { # turn off -w in Test::Harness | ||||||
6 | 0 | 0 | 0 | 0 | shift->{properties}{debugger} ? qw(-d) : qw(-X); | ||
7 | } | ||||||
8 | |||||||
9 | 1; |