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   1132 use strict;
  95         174  
  95         2503  
3 95     95   456 use warnings;
  95         183  
  95         2456  
4              
5 95     95   47738 use Test::Stream::Bundle;
  95         219  
  95         361  
6              
7             sub plugins {
8             return (
9 110     110   553 sub { strict->import(); warnings->import() },
  110         958  
10 110     110 0 1014 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__