File Coverage

blib/lib/Web/AssetLib/Output/Link.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::Link;
2              
3 8     8   7282468 use Moo;
  8         28681  
  8         54  
4 8     8   20834 use Types::Standard qw/Str/;
  8         374814  
  8         76  
5              
6             extends 'Web::AssetLib::Output';
7              
8             has 'src' => (
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::Link - output generated by L<Web::AssetLib::OutputEngine::LocalFile>
23              
24             =head1 SEE ALSO
25              
26             L<Web::AssetLib::OutputEngine::LocalFile>
27             L<Web::AssetLib::Output::Content>
28              
29             =head1 AUTHOR
30            
31             Ryan Lang <rlang@cpan.org>
32              
33             =cut