blib/lib/Test/Pretty/Parser.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 13 | 13 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 5 | 5 | 100.0 |
pod | 1 | 1 | 100.0 |
total | 19 | 19 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Test::Pretty::Parser; | ||||||
2 | 14 | 14 | 957991 | use strict; | |||
14 | 59 | ||||||
14 | 755 | ||||||
3 | 14 | 14 | 114 | use warnings; | |||
14 | 32 | ||||||
14 | 621 | ||||||
4 | 14 | 14 | 82 | use utf8; | |||
14 | 42 | ||||||
14 | 186 | ||||||
5 | 14 | 14 | 430 | use parent qw/TAP::Parser/; | |||
14 | 30 | ||||||
14 | 149 | ||||||
6 | |||||||
7 | # Test::Pretty outputs 1 test results without plan line. | ||||||
8 | 22 | 22 | 1 | 27950 | sub plan { 1 } | ||
9 | |||||||
10 | 1; | ||||||
11 |