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 8     8   184946 use strict;
  8         13  
  8         343  
3 8     8   38 use warnings;
  8         11  
  8         698  
4             package App::Spec::Run::Output;
5              
6             our $VERSION = 'v0.15.0'; # VERSION
7              
8 8     8   2219 use Moo;
  8         18619  
  8         53  
9              
10             has type => ( is => 'rw', default => 'plain' );
11             has error => ( is => 'rw' );
12             has content => ( is => 'rw' );
13              
14             1;
15              
16             __END__