File Coverage

blib/lib/Test2/Plugin/IOEvents/STDERR.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::STDERR;
2 3     3   185041 use strict;
  3         8  
  3         81  
3 3     3   18 use warnings;
  3         8  
  3         169  
4              
5             our $VERSION = '0.000009';
6              
7 3     3   331 BEGIN { require Test2::Plugin::IOEvents::Base; our @ISA = ('Test2::Plugin::IOEvents::Base') };
  3         145  
8              
9 3     3 0 18 sub stream_name { 'STDERR' }
10 3     3 0 12 sub diagnostics { 1 }
11              
12             1;
13              
14             __END__