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   667 use strict;
  95         100  
  95         2284  
3 95     95   289 use warnings;
  95         102  
  95         2116  
4              
5 95     95   30580 use Test::Stream::Bundle qw/import/;
  95         165  
  95         245  
6              
7             sub plugins {
8             return (
9 111     111   437 sub { strict->import(); warnings->import() },
  111         794  
10 111     111 0 748 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__