File Coverage

blib/lib/SmokeRunner/Multi/Reporter/Screen.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 21 21 100.0


line stmt bran cond sub pod time code
1             package SmokeRunner::Multi::Reporter::Screen;
2             BEGIN {
3 1     1   99809 $SmokeRunner::Multi::Reporter::Screen::AUTHORITY = 'cpan:YANICK';
4             }
5             {
6             $SmokeRunner::Multi::Reporter::Screen::VERSION = '0.19';
7             }
8             #ABSTRACT: Prints runner output to STDOUT
9              
10 1     1   9 use strict;
  1         2  
  1         50  
11 1     1   6 use warnings;
  1         2  
  1         36  
12              
13 1     1   6 use base 'SmokeRunner::Multi::Reporter';
  1         2  
  1         624  
14              
15             sub report
16             {
17 1     1 1 1513 my $self = shift;
18              
19 1         59 print "\n";
20 1         35 print 'Output from running tests for ', $self->runner()->set()->name(), "\n";
21              
22 1         130 print $self->runner()->output();
23              
24 1         35 print "\n";
25             }
26              
27              
28             1;
29              
30             __END__