diff options
Diffstat (limited to 'tests/interpretation/list.pom')
-rw-r--r-- | tests/interpretation/list.pom | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/interpretation/list.pom b/tests/interpretation/list.pom new file mode 100644 index 0000000..f02fa23 --- /dev/null +++ b/tests/interpretation/list.pom @@ -0,0 +1,27 @@ +# examples from spec +fonts.list = monospace, sans-serif, serif +fonts.sep = monospace;sans-serif;serif; +files.list = " foo.txt, weird\,name,z " +files.sep = foo.txt;weird,name;z; +things.list = \,,,76 +things.sep = ,;;76; +empties.list = ,,, +empties.sep = ;;; +escapees.list = \\,\a,\, +escapees.sep = \;\a;,; + + +empty.list = +empty.sep = +a.list = a +a.sep = a; +ab.list = " a , b " +ab.sep = a;b; +1empty.list = , +1empty.sep = ; +2empty.list = ,, +2empty.sep = ;; +comma.list = a\,b, c +comma.sep = a,b;c; +backslash.list = a\\\,b, c\\d +backslash.sep = a\,b;c\d; |