diff options
| author | Alan Du <alanhdu@gmail.com> | 2017-06-01 20:54:17 +0100 |
|---|---|---|
| committer | Alan Du <alanhdu@gmail.com> | 2017-06-01 20:59:26 +0100 |
| commit | 69576569a7283ba874893fc71b6bff9407d823a6 (patch) | |
| tree | 66f898b101ff314efbafd0f281f08df371174584 /tests/valid | |
| parent | dc407a6833b8358855fe5fb949b4253874311f47 (diff) | |
| download | milf-rs-69576569a7283ba874893fc71b6bff9407d823a6.tar.gz milf-rs-69576569a7283ba874893fc71b6bff9407d823a6.zip | |
Allow serializing keys with \n in them
Use special quoted form
Closes https://github.com/alexcrichton/toml-rs/issues/185
Diffstat (limited to 'tests/valid')
| -rw-r--r-- | tests/valid/key-quote-newline.json | 3 | ||||
| -rw-r--r-- | tests/valid/key-quote-newline.toml | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/valid/key-quote-newline.json b/tests/valid/key-quote-newline.json new file mode 100644 index 0000000..12473e4 --- /dev/null +++ b/tests/valid/key-quote-newline.json @@ -0,0 +1,3 @@ +{ + "\n": {"type": "integer", "value": "1"} +} diff --git a/tests/valid/key-quote-newline.toml b/tests/valid/key-quote-newline.toml new file mode 100644 index 0000000..a2639bf --- /dev/null +++ b/tests/valid/key-quote-newline.toml @@ -0,0 +1 @@ +"\n" = 1 |