| 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 | 15 | 15 | 1255535 | use strict; | |||
| 15 | 89 | ||||||
| 15 | 850 | ||||||
| 3 | 15 | 15 | 143 | use warnings; | |||
| 15 | 58 | ||||||
| 15 | 906 | ||||||
| 4 | 15 | 15 | 127 | use utf8; | |||
| 15 | 59 | ||||||
| 15 | 313 | ||||||
| 5 | 15 | 15 | 661 | use parent qw/TAP::Parser/; | |||
| 15 | 41 | ||||||
| 15 | 242 | ||||||
| 6 | |||||||
| 7 | # Test::Pretty outputs 1 test results without plan line. | ||||||
| 8 | 24 | 24 | 1 | 59075 | sub plan { 1 } | ||
| 9 | |||||||
| 10 | 1; | ||||||
| 11 |