File Coverage

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   10 use strict;
  2         3  
  2         48  
3 2     2   10 use warnings;
  2         3  
  2         48  
4              
5 2     2   1015 use Test::Stream::Bundle;
  2         4  
  2         15  
6              
7             sub plugins {
8             return (
9 2     2 0 13 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__