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   249648 use strict;
  3         12  
  3         102  
3 3     3   22 use warnings;
  3         10  
  3         240  
4              
5             our $VERSION = '0.000008';
6              
7 3     3   1566 BEGIN { require Test2::Plugin::IOEvents::Base; our @ISA = ('Test2::Plugin::IOEvents::Base') };
  3         211  
8              
9 2     2 0 15 sub stream_name { 'STDOUT' }
10 2     2 0 11 sub diagnostics { 0 }
11              
12             1;
13              
14             __END__