File Coverage

blib/lib/Web/AssetLib/Output/Content.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Web::AssetLib::Output::Content;
2              
3 7     7   7466825 use Moo;
  7         10018  
  7         52  
4 7     7   12316 use Types::Standard qw/Str/;
  7         49660  
  7         61  
5              
6             extends 'Web::AssetLib::Output';
7              
8             has 'content' => (
9             is => 'rw',
10             isa => Str,
11             required => 1
12             );
13              
14             1;
15              
16             =pod
17            
18             =encoding UTF-8
19            
20             =head1 NAME
21              
22             Web::AssetLib::Output::Content - output generated by L<Web::AssetLib::OutputEngine::String>
23              
24             =head1 SEE ALSO
25              
26             L<Web::AssetLib::OutputEngine::String>
27             L<Web::AssetLib::Output::Link>
28              
29             =head1 AUTHOR
30            
31             Ryan Lang <rlang@cpan.org>
32              
33             =cut