blib/lib/Test/Stream/Bundle/Classic.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 10 | 10 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 4 | 4 | 100.0 |
pod | 0 | 1 | 0.0 |
total | 14 | 15 | 93.3 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Test::Stream::Bundle::Classic; | ||||||
2 | 2 | 2 | 9 | use strict; | |||
2 | 4 | ||||||
2 | 50 | ||||||
3 | 2 | 2 | 9 | use warnings; | |||
2 | 4 | ||||||
2 | 50 | ||||||
4 | |||||||
5 | 2 | 2 | 1094 | use Test::Stream::Bundle; | |||
2 | 4 | ||||||
2 | 19 | ||||||
6 | |||||||
7 | sub plugins { | ||||||
8 | return ( | ||||||
9 | 2 | 2 | 0 | 16 | qw{ | ||
10 | IPC | ||||||
11 | TAP | ||||||
12 | ExitSummary | ||||||
13 | Core | ||||||
14 | Subtest | ||||||
15 | }, | ||||||
16 | Classic => [qw/is is_deeply like unlike isnt/], | ||||||
17 | ); | ||||||
18 | } | ||||||
19 | |||||||
20 | 1; | ||||||
21 | |||||||
22 | __END__ |