From: Florian Ragwitz Date: Thu, 13 Aug 2009 21:20:33 +0000 (+0200) Subject: Make the fat comma test more pathological. X-Git-Tag: 0.005011~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f7acf3b0e85131b2ec7d439f857e63661f96931b;p=p5sagit%2FDevel-Declare.git Make the fat comma test more pathological. --- diff --git a/t/no-bareword.t b/t/no-bareword.t index 80f9b0d..9032aaf 100644 --- a/t/no-bareword.t +++ b/t/no-bareword.t @@ -22,7 +22,12 @@ BEGIN { Foo->method; BEGIN { is($i, 0) } -my @foo = (method => 123); +my @foo = ( + method + => + 123 +); + TODO: { BEGIN { local $TODO = 'fat commas not quoting barewords';