aboutsummaryrefslogtreecommitdiff
path: root/tests/valid
diff options
context:
space:
mode:
authorAlan Du <alanhdu@gmail.com>2017-06-01 20:54:17 +0100
committerAlan Du <alanhdu@gmail.com>2017-06-01 20:59:26 +0100
commit69576569a7283ba874893fc71b6bff9407d823a6 (patch)
tree66f898b101ff314efbafd0f281f08df371174584 /tests/valid
parentdc407a6833b8358855fe5fb949b4253874311f47 (diff)
downloadmilf-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.json3
-rw-r--r--tests/valid/key-quote-newline.toml1
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