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   6 use strict;
  2         2  
  2         45  
3 2     2   6 use warnings;
  2         2  
  2         41  
4              
5 2     2   626 use Test::Stream::Bundle qw/import/;
  2         37  
  2         6  
6              
7             sub plugins {
8             return (
9 2     2 0 10 qw{
10             IPC
11             TAP
12             ExitSummary
13             Subtest
14             },
15             Core => ['-all', '!isa_ok'],
16             Classic => [qw/is is_deeply like unlike isnt isa_ok/],
17             );
18             }
19              
20             1;
21              
22             __END__