summaryrefslogtreecommitdiffstats
path: root/t/bare-anon-basic.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-01-03 20:07:17 -0600
committerJesse Luehrs <doy@tozt.net>2013-01-03 20:07:17 -0600
commitd259e270103f4add38933c54a77e01c3a7c7d832 (patch)
tree7949b65abae0b6b02032ae4f43e19e255ac9acbd /t/bare-anon-basic.t
parent777923fe6d993cd91dfc24207b845251b5e259d9 (diff)
downloadpackage-stash-xs-d259e270103f4add38933c54a77e01c3a7c7d832.tar.gz
package-stash-xs-d259e270103f4add38933c54a77e01c3a7c7d832.zip
sync tests
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",
);
}