summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-12-10 02:28:29 -0600
committerJesse Luehrs <doy@tozt.net>2011-12-10 02:28:29 -0600
commitfe08abc6ffcbbc3f827fe53ed99c9868e2d2bc7b (patch)
treeee4398735c0fdc423a8671da579ea7748f7199d9
parent4eb02ba6963002b5d5e50d34f34cce59338e3ec4 (diff)
downloadpackage-stash-xs-fe08abc6ffcbbc3f827fe53ed99c9868e2d2bc7b.tar.gz
package-stash-xs-fe08abc6ffcbbc3f827fe53ed99c9868e2d2bc7b.zip
disable bare anon stash tests for now
-rw-r--r--t/bare-anon-basic.t2
-rw-r--r--t/bare-anon.t2
2 files changed, 4 insertions, 0 deletions
diff --git a/t/bare-anon-basic.t b/t/bare-anon-basic.t
index 0c984d3..64451aa 100644
--- a/t/bare-anon-basic.t
+++ b/t/bare-anon-basic.t
@@ -12,6 +12,8 @@ plan skip_all => "Anonymous stashes in PP need at least perl 5.14"
if $] < 5.014
&& $Package::Stash::IMPLEMENTATION eq 'PP';
+plan skip_all => "This isn't really going to work yet, probably";
+
my $Foo = {};
$Foo->{SOME_CONSTANT} = \1;
diff --git a/t/bare-anon.t b/t/bare-anon.t
index f53a16c..0ecb324 100644
--- a/t/bare-anon.t
+++ b/t/bare-anon.t
@@ -12,6 +12,8 @@ plan skip_all => "Anonymous stashes in PP need at least perl 5.14"
if $] < 5.014
&& $Package::Stash::IMPLEMENTATION eq 'PP';
+plan skip_all => "This isn't really going to work yet, probably";
+
my $anon = {};
my $stash = Package::Stash->new($anon);
# no way to bless something into a hashref yet