diff options
author | pyfisch <pyfisch@posteo.org> | 2020-05-28 17:39:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-28 10:39:55 -0500 |
commit | 940fcf9e183ab4f29204ef4f3ea92c01de8cc08a (patch) | |
tree | 7de5106a89888fe0c3dbe7220012e4d56de3bbee /test-suite | |
parent | 7a43ac9e9c28afec8414f6d924024f5d33fe8fa2 (diff) | |
download | milf-rs-940fcf9e183ab4f29204ef4f3ea92c01de8cc08a.tar.gz milf-rs-940fcf9e183ab4f29204ef4f3ea92c01de8cc08a.zip |
Allow delimiter quotes at the end of multiline strings (#393)
TOML allows (unlike many other formats) up to 2
additonal quotes that are part of the string:
basic = """2 extra quotes -->"""""
literal = '''here too ''''
Changed in TOML v1.0.0-rc.1
See also #392
Diffstat (limited to 'test-suite')
-rw-r--r-- | test-suite/tests/valid.rs | 6 | ||||
-rw-r--r-- | test-suite/tests/valid/string-delim-end.json | 14 | ||||
-rw-r--r-- | test-suite/tests/valid/string-delim-end.toml | 3 |
3 files changed, 23 insertions, 0 deletions
diff --git a/test-suite/tests/valid.rs b/test-suite/tests/valid.rs index 0bb7caa..0745cc8 100644 --- a/test-suite/tests/valid.rs +++ b/test-suite/tests/valid.rs @@ -389,3 +389,9 @@ test!( include_str!("valid/float-exponent.toml"), include_str!("valid/float-exponent.json") ); + +test!( + string_delim_end, + include_str!("valid/string-delim-end.toml"), + include_str!("valid/string-delim-end.json") +); diff --git a/test-suite/tests/valid/string-delim-end.json b/test-suite/tests/valid/string-delim-end.json new file mode 100644 index 0000000..69b5a0a --- /dev/null +++ b/test-suite/tests/valid/string-delim-end.json @@ -0,0 +1,14 @@ +{ + "str1": { + "type": "string", + "value": "\"This,\" she said, \"is just a pointless statement.\"" + }, + "str2": { + "type": "string", + "value": "foo''bar''" + }, + "str3": { + "type": "string", + "value": "\"\"" + } +}
\ No newline at end of file diff --git a/test-suite/tests/valid/string-delim-end.toml b/test-suite/tests/valid/string-delim-end.toml new file mode 100644 index 0000000..9a41219 --- /dev/null +++ b/test-suite/tests/valid/string-delim-end.toml @@ -0,0 +1,3 @@ +str1 = """"This," she said, "is just a pointless statement."""" +str2 = '''foo''bar''''' +str3 = """""""" |