| 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 | 2598830 | use strict; | |||
| 14 | 46 | ||||||
| 14 | 592 | ||||||
| 3 | 14 | 14 | 85 | use warnings; | |||
| 14 | 26 | ||||||
| 14 | 456 | ||||||
| 4 | 14 | 14 | 65 | use utf8; | |||
| 14 | 32 | ||||||
| 14 | 152 | ||||||
| 5 | 14 | 14 | 324 | use parent qw/TAP::Parser/; | |||
| 14 | 24 | ||||||
| 14 | 116 | ||||||
| 6 | |||||||
| 7 | # Test::Pretty outputs 1 test results without plan line. | ||||||
| 8 | 22 | 22 | 1 | 22947 | sub plan { 1 } | ||
| 9 | |||||||
| 10 | 1; | ||||||
| 11 |