summaryrefslogtreecommitdiffstats
path: root/t/bare-anon-basic.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-11-29 14:49:26 -0600
committerJesse Luehrs <doy@tozt.net>2011-11-29 14:49:26 -0600
commitacbc69c4f1ade78eb1d6f951cb6336af4297d996 (patch)
treef9d8ed192469daac7ffc967762dd2649452df560 /t/bare-anon-basic.t
parentace6563db0b4154744704087b763f76f847bf590 (diff)
downloadpackage-stash-acbc69c4f1ade78eb1d6f951cb6336af4297d996.tar.gz
package-stash-acbc69c4f1ade78eb1d6f951cb6336af4297d996.zip
don't rely on the ::PP BROKEN_ constants existing in tests
Diffstat (limited to 't/bare-anon-basic.t')
-rw-r--r--t/bare-anon-basic.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/bare-anon-basic.t b/t/bare-anon-basic.t
index 3291cd3..9cea31e 100644
--- a/t/bare-anon-basic.t
+++ b/t/bare-anon-basic.t
@@ -9,7 +9,7 @@ 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 $] < 5.014
&& $Package::Stash::IMPLEMENTATION eq 'PP';
my $Foo = {};