projects
/
p5sagit/Devel-Declare.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
fac325f
)
Make the fat comma test more pathological.
Florian Ragwitz [Thu, 13 Aug 2009 21:20:33 +0000 (23:20 +0200)]
t/no-bareword.t
patch
|
blob
|
blame
|
history
diff --git
a/t/no-bareword.t
b/t/no-bareword.t
index
80f9b0d
..
9032aaf
100644
(file)
--- 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';