This is an automatically generated mail to inform you that tests are now available in t/spec/S06-other/anon-hashes-vs-blocks.t
commit 2b061254b408b68e101c33c41d84c9b10a40d309 Author: moritz <mor...@c213334d-75ef-0310-aa23-eaa082d1ae64> Date: Mon Jun 28 20:59:09 2010 +0000 [t/spec] test for RT #76198, {;} should be a Block git-svn-id: http://svn.pugscode.org/p...@31487 c213334d-75ef-0310-aa23-eaa082d1ae64 diff --git a/t/spec/S06-other/anon-hashes-vs-blocks.t b/t/spec/S06-other/anon-hashes-vs-blocks.t index 670f67c..adb76eb 100644 --- a/t/spec/S06-other/anon-hashes-vs-blocks.t +++ b/t/spec/S06-other/anon-hashes-vs-blocks.t @@ -45,6 +45,7 @@ ok $bar ~~ Hash, '%foo in a block causes hash composing'; ok { $^a => 'b' } ~~ Block, '... as a key'; ok { a => $^x } ~~ Block, '... as a value'; ok { b => 3, a => $^x, 4 => 5 } ~~ Block, '... somewhere deep inside'; + ok {;} ~~ Block, '{;} is a Block'; } done_testing;