summaryrefslogtreecommitdiffstats
path: root/t/edge-cases.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-01-03 23:31:08 -0600
committerJesse Luehrs <doy@tozt.net>2013-01-03 23:31:08 -0600
commitdb7c38b0b0dcd88368ad5b88df89772f63292386 (patch)
tree2a58818856e7a05707d3c1bbb225c5c924f55376 /t/edge-cases.t
parent90d87eb423c9e8dc48b9633bd7e884505ba9869a (diff)
downloadpackage-stash-xs-db7c38b0b0dcd88368ad5b88df89772f63292386.tar.gz
package-stash-xs-db7c38b0b0dcd88368ad5b88df89772f63292386.zip
make it explicit that anon stash support requires 5.10
Diffstat (limited to 't/edge-cases.t')
-rw-r--r--t/edge-cases.t2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/edge-cases.t b/t/edge-cases.t
index ddaca14..4e851c3 100644
--- a/t/edge-cases.t
+++ b/t/edge-cases.t
@@ -56,6 +56,8 @@ 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 $] < 5.014 && $Package::Stash::IMPLEMENTATION eq 'PP';
+ skip "XS doesn't support anon stashes before 5.10", 4
+ if $] < 5.010 && $Package::Stash::IMPLEMENTATION eq 'XS';
local $TODO = "don't know how to properly inflate a stash entry in PP"
if $Package::Stash::IMPLEMENTATION eq 'PP';