summaryrefslogtreecommitdiffstats
path: root/t/bare-anon.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-11-29 14:34:53 -0600
committerJesse Luehrs <doy@tozt.net>2011-11-29 14:34:53 -0600
commitace6563db0b4154744704087b763f76f847bf590 (patch)
treeddbb2fb936a351f3b563de4696d6ebb80cc4c8dd /t/bare-anon.t
parentc6ddb1d1e19b3e23d64840dd62e2f9c777b5eb09 (diff)
downloadpackage-stash-ace6563db0b4154744704087b763f76f847bf590.tar.gz
package-stash-ace6563db0b4154744704087b763f76f847bf590.zip
properly conditionalize these on the PP implementation
Diffstat (limited to 't/bare-anon.t')
-rw-r--r--t/bare-anon.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/bare-anon.t b/t/bare-anon.t
index 3c96ec8..e24647d 100644
--- a/t/bare-anon.t
+++ b/t/bare-anon.t
@@ -9,7 +9,8 @@ use Package::Stash;
use Symbol;
plan skip_all => "Anonymous stashes in PP need at least perl 5.14"
- if Package::Stash::BROKEN_GLOB_ASSIGNMENT;
+ if Package::Stash::BROKEN_GLOB_ASSIGNMENT
+ && $Package::Stash::IMPLEMENTATION eq 'PP';
my $anon = {};
my $stash = Package::Stash->new($anon);