File Coverage

blib/lib/Test2/Plugin/IOEvents/STDOUT.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 15 17 88.2


line stmt bran cond sub pod time code
1             package Test2::Plugin::IOEvents::STDOUT;
2 3     3   154164 use strict;
  3         8  
  3         84  
3 3     3   19 use warnings;
  3         7  
  3         256  
4              
5             our $VERSION = '0.000007';
6              
7 3     3   1177 BEGIN { require Test2::Plugin::IOEvents::Base; our @ISA = ('Test2::Plugin::IOEvents::Base') };
  3         157  
8              
9 2     2 0 12 sub stream_name { 'STDOUT' }
10 2     2 0 10 sub diagnostics { 0 }
11              
12             1;
13              
14             __END__