summaryrefslogtreecommitdiffstats
path: root/t/bug-rt-78272.t
diff options
context:
space:
mode:
authorCarlos <carlos@multi>2012-12-29 18:06:13 +0800
committerJesse Luehrs <doy@tozt.net>2013-01-03 21:33:06 -0600
commitff581360d8d690879a1ece4e004acc1e3625f7dc (patch)
treea44dae38b4bedc18047f74e17943b5cf4a6747c4 /t/bug-rt-78272.t
parent386514ec675d3879c28b3f1164974b049c552a5e (diff)
downloadpackage-stash-ff581360d8d690879a1ece4e004acc1e3625f7dc.tar.gz
package-stash-ff581360d8d690879a1ece4e004acc1e3625f7dc.zip
Replaces internal logic to select implementation with Module::Implementation
Diffstat (limited to 't/bug-rt-78272.t')
-rw-r--r--t/bug-rt-78272.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/bug-rt-78272.t b/t/bug-rt-78272.t
index c2bfff4..0d6099b 100644
--- a/t/bug-rt-78272.t
+++ b/t/bug-rt-78272.t
@@ -10,7 +10,7 @@ subtest 'Bug RT-78272: Arbitrary code execution from $ENV' => sub {
like(
exception { require Package::Stash },
- qr/^Could not load Package::Stash::$e/,
+ qr/$e is not a valid implementation for Package::Stash/,
'Arbitrary code in $ENV throws exception'
);
@@ -19,7 +19,7 @@ subtest 'Bug RT-78272: Arbitrary code execution from $ENV' => sub {
delete $INC{'Package/Stash.pm'};
require Package::Stash;
},
- qr/^Could not load Package::Stash::$e/,
+ qr/$e is not a valid implementation for Package::Stash/,
'Sanity check: forcing package reload throws the exception again'
);