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   26 use strict;
  4         8  
  4         110  
3 4     4   20 use warnings;
  4         6  
  4         201  
4             package App::Spec::Run::Output;
5              
6             our $VERSION = '0.013'; # VERSION
7              
8 4     4   40 use Moo;
  4         18  
  4         24  
9              
10             has type => ( is => 'rw', default => 'plain' );
11             has error => ( is => 'rw' );
12             has content => ( is => 'rw' );
13              
14             1;
15              
16             __END__