summaryrefslogtreecommitdiffstats
path: root/t/bare-anon-basic.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-01-03 19:31:18 -0600
committerJesse Luehrs <doy@tozt.net>2013-01-03 19:39:53 -0600
commit9cf1cab181cf771e28b272186fd0faa9877cc2ad (patch)
tree1f9e65d63e670d1a24897df888a00ce0248388bd /t/bare-anon-basic.t
parentf22b46d43e001969af9ced3ab3de8a62c91c86fe (diff)
downloadpackage-stash-9cf1cab181cf771e28b272186fd0faa9877cc2ad.tar.gz
package-stash-9cf1cab181cf771e28b272186fd0faa9877cc2ad.zip
no, really make sure i'm testing the right thing (why is this failing)
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",
);
}