summaryrefslogtreecommitdiffstats
path: root/t/bare-anon-basic.t
diff options
context:
space:
mode:
Diffstat (limited to 't/bare-anon-basic.t')
-rw-r--r--t/bare-anon-basic.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/t/bare-anon-basic.t b/t/bare-anon-basic.t
index 64451aa..5bdb523 100644
--- a/t/bare-anon-basic.t
+++ b/t/bare-anon-basic.t
@@ -255,7 +255,10 @@ ok(defined(*{ $Foo->{foo} }{ARRAY}), '... the @foo slot has NOT been removed');
is_deeply(
$syms,
- { zork => *{ $Foo->{zork} }{HASH} },
+ {
+ zork => *{ $Foo->{zork} }{HASH},
+ bare => *{ $Foo->{bare} }{HASH},
+ },
"got the right ones",
);
}