blob: 401f373cadb1f9fa0e63632d020bea04ef96c3b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#!/usr/bin/perl
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
use strict;
use warnings;
use Test::More;
use Test::Dpkg qw(:needs);
use Module::Metadata;
test_needs_srcdir_switch();
my @files = Test::Dpkg::all_perl_modules();
plan tests => scalar @files;
sub module_version_ok
{
my $file = shift;
my $mod = Module::Metadata->new_from_file($file, collect_pod => 1);
my $modver = $mod->version();
my $podver;
SKIP: {
if ($mod->contains_pod()) {
my $in_changes = 0;
foreach my $sect ($mod->pod_inside) {
if ($sect eq 'CHANGES') {
$in_changes = 1;
next;
}
if ($in_changes and $sect =~ m/^Version ([0-9x.]+)/) {
$podver = $1;
last;
}
}
if (not $in_changes) {
fail("module $file does not contain a CHANGES POD section");
return;
}
} else {
skip("module $file does not contain POD", 1);
}
if (defined $podver and $podver eq '0.xx') {
ok($modver =~ m/^0.\d\d$/,
"module $file version $modver is POD version 0.xx");
} else {
ok($modver eq $podver,
"module $file version $modver == POD version $podver");
}
}
}
foreach my $file (@files) {
module_version_ok($file);
};
|