summaryrefslogtreecommitdiffstats
path: root/xt/author/20-leaks.t
diff options
context:
space:
mode:
Diffstat (limited to 'xt/author/20-leaks.t')
-rw-r--r--xt/author/20-leaks.t20
1 files changed, 14 insertions, 6 deletions
diff --git a/xt/author/20-leaks.t b/xt/author/20-leaks.t
index c37df91..767b4f1 100644
--- a/xt/author/20-leaks.t
+++ b/xt/author/20-leaks.t
@@ -59,16 +59,24 @@ use Symbol;
{
my $foo = Package::Stash->new('Foo');
- { local $TODO = $Package::Stash::IMPLEMENTATION eq 'PP'
- ? "the pure perl implementation leaks here somehow"
- : undef;
no_leaks_ok {
$foo->add_symbol('$scalar_init' => 1);
+ } "add_symbol scalar doesn't leak";
+ no_leaks_ok {
$foo->add_symbol('@array_init' => []);
+ } "add_symbol array doesn't leak";
+ no_leaks_ok {
$foo->add_symbol('%hash_init' => {});
+ } "add_symbol hash doesn't leak";
+ no_leaks_ok {
$foo->add_symbol('&code_init' => sub { "foo" });
+ } "add_symbol code doesn't leak";
+ { local $TODO = $Package::Stash::IMPLEMENTATION eq 'PP'
+ ? "the pure perl implementation leaks here somehow"
+ : undef;
+ no_leaks_ok {
$foo->add_symbol('io_init' => Symbol::geniosym);
- } "add_symbol doesn't leak";
+ } "add_symbol io doesn't leak";
}
is(exception {
is(Foo->code_init, 'foo', "sub installed correctly")
@@ -127,8 +135,8 @@ use Symbol;
@{$foo->get_or_add_symbol('@ISA')} = @super;
$foo->get_or_add_symbol('$glob');
} "get_or_add_symbol doesn't leak";
- { local $TODO = ($] < 5.010 || $Package::Stash::IMPLEMENTATION eq 'PP')
- ? "undef scalars aren't visible on 5.8, or from pure perl at all"
+ { local $TODO = $] < 5.010
+ ? "undef scalars aren't visible on 5.8"
: undef;
ok($foo->has_symbol('$glob'));
}