diff options
author | Huon Wilson <dbau.pp+github@gmail.com> | 2014-07-18 20:19:21 +1000 |
---|---|---|
committer | Huon Wilson <dbau.pp+github@gmail.com> | 2014-07-18 20:20:45 +1000 |
commit | e756f56b62053a34aa26a00e28dbe4ce29cd9125 (patch) | |
tree | 2ccbf27ac04539985419897bf0225267c22f2541 /src/test/valid | |
parent | 05f8c0bc41a10f1e98e420f8d02d778541d13d48 (diff) | |
download | milf-rs-e756f56b62053a34aa26a00e28dbe4ce29cd9125.tar.gz milf-rs-e756f56b62053a34aa26a00e28dbe4ce29cd9125.zip |
Disambiguate "" empty strings from multiline strings properly.
Previously `""` would go into multiline mode and thus *require* a
following ".
Diffstat (limited to 'src/test/valid')
-rw-r--r-- | src/test/valid/string-empty.json | 6 | ||||
-rw-r--r-- | src/test/valid/string-empty.toml | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/test/valid/string-empty.json b/src/test/valid/string-empty.json new file mode 100644 index 0000000..6c26d69 --- /dev/null +++ b/src/test/valid/string-empty.json @@ -0,0 +1,6 @@ +{ + "answer": { + "type": "string", + "value": "" + } +} diff --git a/src/test/valid/string-empty.toml b/src/test/valid/string-empty.toml new file mode 100644 index 0000000..e37e681 --- /dev/null +++ b/src/test/valid/string-empty.toml @@ -0,0 +1 @@ +answer = "" |