File Coverage

blib/lib/Software/License/Mozilla_2_0.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   16664 use strict;
  10         25  
  10         293  
2 10     10   52 use warnings;
  10         21  
  10         488  
3             package Software::License::Mozilla_2_0;
4             $Software::License::Mozilla_2_0::VERSION = '0.104004';
5 10     10   54 use parent 'Software::License';
  10         31  
  10         48  
6             # ABSTRACT: Mozilla Public License Version 2.0
7              
8 22     22 1 124 sub name { 'Mozilla Public License Version 2.0' }
9 0     0 1 0 sub url { 'http://www.mozilla.org/MPL/2.0/index.txt' }
10 43     43 1 134 sub meta_name { 'mozilla' }
11 42     42 1 91 sub meta2_name { 'open_source' }
12 43     43 1 120 sub spdx_expression { 'MPL-2.0' }
13              
14             1;
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             Software::License::Mozilla_2_0 - Mozilla Public License Version 2.0
23              
24             =head1 VERSION
25              
26             version 0.104004
27              
28             =head1 PERL VERSION
29              
30             This module is part of CPAN toolchain, or is treated as such. As such, it
31             follows the agreement of the Perl Toolchain Gang to require no newer version
32             of perl than one released in the last ten years. This version may change by
33             agreement of the Toolchain Gang, but for now is governed by the L
34             Consensus|https://github.com/Perl-Toolchain-Gang/toolchain-site/blob/master/lancaster-consensus.md>
35             of 2013 and the Lyon Amendment of 2023 (described at the linked-to document).
36              
37             Although it may work on older versions of perl, no guarantee is made that the
38             minimum required version will not be increased. The version may be increased
39             for any reason, and there is no promise that patches will be accepted to
40             lower the minimum required perl.
41              
42             =head1 AUTHOR
43              
44             Ricardo Signes
45              
46             =head1 COPYRIGHT AND LICENSE
47              
48             This software is copyright (c) 2023 by Ricardo Signes.
49              
50             This is free software; you can redistribute it and/or modify it under
51             the same terms as the Perl 5 programming language system itself.
52              
53             =cut
54              
55             __DATA__