summaryrefslogtreecommitdiffstats
path: root/t/edge-cases.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/edge-cases.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/edge-cases.t')
-rwxr-xr-xt/edge-cases.t3
1 files changed, 1 insertions, 2 deletions
diff --git a/t/edge-cases.t b/t/edge-cases.t
index 1d26176..d1e5182 100755
--- a/t/edge-cases.t
+++ b/t/edge-cases.t
@@ -55,8 +55,7 @@ is(ref($stash->get_or_add_symbol('$glob')), 'SCALAR', "got an empty scalar");
SKIP: {
skip "PP doesn't support anon stashes before 5.14", 4
- if $Package::Stash::IMPLEMENTATION eq 'PP'
- && Package::Stash::BROKEN_GLOB_ASSIGNMENT;
+ if $] < 5.014 && $Package::Stash::IMPLEMENTATION eq 'PP';
local $TODO = ($Package::Stash::IMPLEMENTATION eq 'PP')
? "don't know how to properly inflate a stash entry"
: undef;