File Coverage

blib/lib/Test/Stream/Plugin/LoadPlugin.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 19 20 95.0


line stmt bran cond sub pod time code
1             package Test::Stream::Plugin::LoadPlugin;
2 41     41   219 use strict;
  41         76  
  41         1054  
3 41     41   205 use warnings;
  41         78  
  41         1014  
4              
5 41     41   227 use Test::Stream::Exporter;
  41         130  
  41         385  
6             default_exports qw/load_plugin/;
7 41     41   231 no Test::Stream::Exporter;
  41         82  
  41         183  
8              
9             sub load_plugin {
10 33     33 0 248 my @caller = caller;
11 33         202 Test::Stream->load(\@caller, @_);
12             }
13              
14             1;
15              
16             __END__