File Coverage

blib/lib/Software/License/LGPL_3_0.pm
Criterion Covered Total %
statement 16 23 69.5
branch n/a
condition n/a
subroutine 8 10 80.0
pod 6 6 100.0
total 30 39 76.9


line stmt bran cond sub pod time code
1 10     10   16464 use strict;
  10         27  
  10         493  
2 10     10   74 use warnings;
  10         20  
  10         495  
3             package Software::License::LGPL_3_0;
4             $Software::License::LGPL_3_0::VERSION = '0.104001';
5 10     10   56 use parent 'Software::License';
  10         19  
  10         48  
6             # ABSTRACT: GNU Lesser General Public License, Version 3
7              
8 10     10   636 use Software::License::GPL_3;
  10         32  
  10         2070  
9              
10 23     23 1 206 sub name { 'The GNU Lesser General Public License, Version 3, June 2007' }
11 0     0 1 0 sub url { 'http://www.gnu.org/licenses/lgpl-3.0.txt' }
12 43     43 1 258 sub meta_name { 'lgpl' }
13 42     42 1 126 sub meta2_name { 'lgpl_3_0' }
14 43     43 1 139 sub spdx_expression { 'LGPL-3.0' }
15              
16             sub fulltext {
17 0     0 1   my ($self) = @_;
18              
19 0           my $lgpl = $self->SUPER::fulltext;
20              
21 0           $lgpl .= "\n\n" . ('-' x 79) . "\n\n";
22              
23 0           my $gpl_3_ref = Software::License::GPL_3->section_data('LICENSE');
24 0           $lgpl .= $$gpl_3_ref;
25              
26 0           return $lgpl;
27             }
28              
29             1;
30              
31             =pod
32              
33             =encoding UTF-8
34              
35             =head1 NAME
36              
37             Software::License::LGPL_3_0 - GNU Lesser General Public License, Version 3
38              
39             =head1 VERSION
40              
41             version 0.104001
42              
43             =head1 AUTHOR
44              
45             Ricardo Signes
46              
47             =head1 COPYRIGHT AND LICENSE
48              
49             This software is copyright (c) 2021 by Ricardo Signes.
50              
51             This is free software; you can redistribute it and/or modify it under
52             the same terms as the Perl 5 programming language system itself.
53              
54             =cut
55              
56             __DATA__