File Coverage

blib/lib/Test/Stream/Bundle/V1.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 17 18 94.4


line stmt bran cond sub pod time code
1             package Test::Stream::Bundle::V1;
2 95     95   1066 use strict;
  95         173  
  95         2492  
3 95     95   465 use warnings;
  95         158  
  95         2414  
4              
5 95     95   47617 use Test::Stream::Bundle;
  95         225  
  95         365  
6              
7             sub plugins {
8             return (
9 110     110   530 sub { strict->import(); warnings->import() },
  110         960  
10 110     110 0 1019 qw{
11             IPC
12             TAP
13             ExitSummary
14             Core
15             Context
16             Exception
17             Warnings
18             Compare
19             Mock
20             UTF8
21             },
22             );
23             }
24              
25             1;
26              
27             __END__