blob: 90e8938ebe7fa31dc18467734beab3cf7d1d5347 (
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
|
#!/usr/bin/perl
# Test important dependant modules so we don't accidentally half of CPAN.
use strict;
use warnings;
use Test::More;
BEGIN {
plan skip_all => "Dependents only tested when releasing" unless $ENV{PERL_RELEASING};
}
require File::Spec;
use CPAN;
CPAN::HandleConfig->load;
$CPAN::Config->{test_report} = 0;
# Module which depend on Test::More to test
my @Modules = qw(
Test::Most
Test::Warn
Test::Exception
Test::Class
Test::Deep
Test::Differences
Test::NoWarnings
);
# Modules which are known to be broken
my %Broken = map { $_ => 1 } qw(
);
TODO: for my $name (@ARGV ? @ARGV : @Modules) {
local $TODO = "$name known to be broken" if $Broken{$name};
local $ENV{PERL5LIB} = "$ENV{PERL5LIB}:" . File::Spec->rel2abs("blib/lib");
my $module = CPAN::Shell->expand("Module", $name);
$module->test;
ok( !$module->distribution->{make_test}->failed, $name );
}
done_testing();
|