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 | |
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')
-rw-r--r-- | tests/valid.rs | 3 | ||||
-rw-r--r-- | tests/valid/key-quote-newline.json | 3 | ||||
-rw-r--r-- | tests/valid/key-quote-newline.toml | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/tests/valid.rs b/tests/valid.rs index b3cc096..e7577ad 100644 --- a/tests/valid.rs +++ b/tests/valid.rs @@ -193,6 +193,9 @@ test!(example_bom, test!(datetime_truncate, include_str!("valid/datetime-truncate.toml"), include_str!("valid/datetime-truncate.json")); +test!(key_quote_newline, + include_str!("valid/key-quote-newline.toml"), + include_str!("valid/key-quote-newline.json")); test!(table_array_nest_no_keys, include_str!("valid/table-array-nest-no-keys.toml"), include_str!("valid/table-array-nest-no-keys.json")); 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 |