disable bare anon stash tests for now
Jesse Luehrs [Sat, 10 Dec 2011 08:27:48 +0000 (02:27 -0600)]
t/bare-anon-basic.t
t/bare-anon.t

index 9cea31e..2119d8f 100644 (file)
@@ -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;
 
index 34e234c..2f756d5 100644 (file)
@@ -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