File Coverage

blib/lib/Software/License/BSD.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod 5 5 100.0
total 27 27 100.0


line stmt bran cond sub pod time code
1 11     11   83614 use strict;
  11         35  
  11         410  
2 11     11   66 use warnings;
  11         101  
  11         598  
3             package Software::License::BSD;
4             $Software::License::BSD::VERSION = '0.104001';
5 11     11   598 use parent 'Software::License';
  11         391  
  11         60  
6             # ABSTRACT: The (three-clause) BSD License
7              
8 23     23 1 206 sub name { 'The (three-clause) BSD License' }
9 1     1 1 102 sub url { 'http://opensource.org/licenses/BSD-3-Clause' }
10 43     43 1 154 sub meta_name { 'bsd' }
11 42     42 1 95 sub meta2_name { 'bsd' }
12 43     43 1 113 sub spdx_expression { 'BSD' }
13              
14             1;
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             Software::License::BSD - The (three-clause) BSD License
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__