]> Sergey Matveev's repositories - public-inbox.git/commitdiff
t/plack.t: fix test *with* plack installed... oops
authorEric Wong <e@80x24.org>
Sat, 26 Dec 2015 23:56:15 +0000 (23:56 +0000)
committerEric Wong <e@80x24.org>
Sun, 27 Dec 2015 02:14:13 +0000 (02:14 +0000)
Fixes commit 83fedde4cde6539386c9d3ecf37fb99d74af8d93
("tests: fixup requirements for tests")

t/plack.t

index 6c7edb5db42b65001091d3f133ee77e141e772d9..f61b3bec8afb7423cfaf9f31e253922b1b106199 100644 (file)
--- a/t/plack.t
+++ b/t/plack.t
@@ -20,13 +20,14 @@ my $addr = 'test-public@example.com';
 my $cfgpfx = "publicinbox.test";
 my $failbox = "$home/fail.mbox";
 local $ENV{PI_EMERGENCY} = $failbox;
-
-foreach my $mod (qw(Plack::Test HTTP::Request::Common
-                        Mail::Thread URI::Escape)) {
+my @mods = qw(HTTP::Request::Common Plack::Request Plack::Test
+       Mail::Thread URI::Escape);
+foreach my $mod (@mods) {
        eval "require $mod";
        plan skip_all => "$mod missing for plack.t" if $@;
 }
 
+foreach my $mod (@mods) { use_ok $mod; }
 {
        ok(-f $psgi, "psgi example file found");
        ok(-x "$main_bin/spamc",