File Coverage

blib/lib/Software/License/None.pm
Criterion Covered Total %
statement 12 13 92.3
branch n/a
condition n/a
subroutine 6 7 85.7
pod 4 4 100.0
total 22 24 91.6


line stmt bran cond sub pod time code
1 9     9   12224 use strict;
  9         18  
  9         255  
2 9     9   47 use warnings;
  9         15  
  9         394  
3             package Software::License::None;
4             $Software::License::None::VERSION = '0.104004';
5 9     9   56 use parent 'Software::License';
  9         21  
  9         42  
6             # ABSTRACT: describes a "license" that gives no license for re-use
7              
8 21     21 1 46 sub name { q("No License" License) }
9 0     0 1 0 sub url { undef }
10              
11 43     43 1 139 sub meta_name { 'restrictive' }
12 42     42 1 96 sub meta2_name { 'restricted' }
13              
14             1;
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             Software::License::None - describes a "license" that gives no license for re-use
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__