File Coverage

blib/lib/Software/License/Apache_1_1.pm
Criterion Covered Total %
statement 13 14 92.8
branch n/a
condition n/a
subroutine 7 8 87.5
pod 5 5 100.0
total 25 27 92.5


line stmt bran cond sub pod time code
1 10     10   20111 use strict;
  10         26  
  10         317  
2 10     10   52 use warnings;
  10         20  
  10         520  
3             package Software::License::Apache_1_1;
4             $Software::License::Apache_1_1::VERSION = '0.104001';
5 10     10   69 use parent 'Software::License';
  10         75  
  10         79  
6             # ABSTRACT: The Apache Software License, Version 1.1
7              
8 22     22 1 127 sub name { 'The Apache Software License, Version 1.1' }
9 0     0 1 0 sub url { 'http://www.apache.org/licenses/LICENSE-1.1' }
10 43     43 1 163 sub meta_name { 'apache' }
11 42     42 1 101 sub meta2_name { 'apache_1_1' }
12 43     43 1 181 sub spdx_expression { 'Apache-1.1' }
13              
14             1;
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             Software::License::Apache_1_1 - The Apache Software License, Version 1.1
23              
24             =head1 VERSION
25              
26             version 0.104001
27              
28             =head1 AUTHOR
29              
30             Ricardo Signes
31              
32             =head1 COPYRIGHT AND LICENSE
33              
34             This software is copyright (c) 2021 by Ricardo Signes.
35              
36             This is free software; you can redistribute it and/or modify it under
37             the same terms as the Perl 5 programming language system itself.
38              
39             =cut
40              
41             __DATA__