summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-12-10 02:27:48 -0600
committerJesse Luehrs <doy@tozt.net>2011-12-10 02:27:48 -0600
commite068010b38c06c1632291ea6bdc2560d63305dc1 (patch)
treee2c6206fdf61acb7c4c1ec905e11747571ebd477
parentf253ff9ea6aad9021b3a0d15449e8097d348402a (diff)
downloadpackage-stash-e068010b38c06c1632291ea6bdc2560d63305dc1.tar.gz
package-stash-e068010b38c06c1632291ea6bdc2560d63305dc1.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 9cea31e..2119d8f 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 34e234c..2f756d5 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