File Coverage

blib/lib/Test/Stream/Plugin/Context.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Test::Stream::Plugin::Context;
2 97     97   662 use strict;
  97         112  
  97         2475  
3 97     97   4928 use warnings;
  97         128  
  97         2661  
4              
5 97     97   357 use Test::Stream::Context qw/context release/;
  97         96  
  97         479  
6              
7 97     97   405 use Test::Stream::Exporter qw/import exports default_exports/;
  97         120  
  97         374  
8             exports qw/release/;
9             default_exports qw/context/;
10 97     97   340 no Test::Stream::Exporter;
  97         103  
  97         256  
11              
12             1;
13              
14             __END__