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   226675 use strict;
  3         9  
  3         89  
3 3     3   20 use warnings;
  3         9  
  3         188  
4              
5             our $VERSION = '0.000008';
6              
7 3     3   503 BEGIN { require Test2::Plugin::IOEvents::Base; our @ISA = ('Test2::Plugin::IOEvents::Base') };
  3         127  
8              
9 3     3 0 17 sub stream_name { 'STDERR' }
10 3     3 0 13 sub diagnostics { 1 }
11              
12             1;
13              
14             __END__