File Coverage

blib/lib/Test/Stream/Bundle/Tester.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::Tester;
2 37     37   125 use strict;
  37         43  
  37         854  
3 37     37   121 use warnings;
  37         28  
  37         776  
4              
5 37     37   110 use Test::Stream::Bundle qw/import/;
  37         34  
  37         165  
6              
7             sub plugins {
8             return (
9 38     38 0 177 qw/Intercept Grab LoadPlugin Context/,
10             Compare => ['-all'],
11             );
12             }
13              
14             1;
15              
16             __END__