File Coverage

blib/lib/App/Spec/Run/Output.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             # ABSTRACT: Output class for App::Spec::Run
2 4     4   22 use strict;
  4         11  
  4         94  
3 4     4   17 use warnings;
  4         6  
  4         171  
4             package App::Spec::Run::Output;
5              
6             our $VERSION = '0.012'; # VERSION
7              
8 4     4   36 use Moo;
  4         7  
  4         16  
9              
10             has type => ( is => 'rw', default => 'plain' );
11             has error => ( is => 'rw' );
12             has content => ( is => 'rw' );
13              
14             1;
15              
16             __END__