summaryrefslogtreecommitdiffstats
path: root/test/data
diff options
context:
space:
mode:
authorBrice Figureau <brice-puppet@daysofwonder.com>2008-10-16 20:24:30 +0200
committerJames Turnbull <james@lovedthanlost.net>2008-10-21 09:32:28 +1100
commite6f99f92ec5bfba973a3f13c629a8ce263a0da7d (patch)
tree631bd56718c635f80d9f608bfd52cfbda914b63f /test/data
parenta74ec60d33dee1c592ec858faeccc23d7a7b79f3 (diff)
downloadpuppet-e6f99f92ec5bfba973a3f13c629a8ce263a0da7d.tar.gz
puppet-e6f99f92ec5bfba973a3f13c629a8ce263a0da7d.tar.xz
puppet-e6f99f92ec5bfba973a3f13c629a8ce263a0da7d.zip
Fix #636 - Allow extraneous comma in function argument list
Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com>
Diffstat (limited to 'test/data')
-rw-r--r--test/data/snippets/funccomma.pp5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/data/snippets/funccomma.pp b/test/data/snippets/funccomma.pp
new file mode 100644
index 000000000..32e34f92e
--- /dev/null
+++ b/test/data/snippets/funccomma.pp
@@ -0,0 +1,5 @@
+@file {
+ ["/tmp/funccomma1","/tmp/funccomma2"]: content => "1"
+}
+
+realize( File["/tmp/funccomma1"], File["/tmp/funccomma2"] , )