From dc407a6833b8358855fe5fb949b4253874311f47 Mon Sep 17 00:00:00 2001 From: Alan Du Date: Thu, 1 Jun 2017 20:35:39 +0100 Subject: Truncate fractional seconds to picoseconds Close https://github.com/alexcrichton/toml-rs/issues/186 --- tests/valid.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/valid.rs') diff --git a/tests/valid.rs b/tests/valid.rs index 676fc67..b3cc096 100644 --- a/tests/valid.rs +++ b/tests/valid.rs @@ -190,6 +190,9 @@ test!(example_bom, include_str!("valid/example-bom.toml"), include_str!("valid/example.json")); +test!(datetime_truncate, + include_str!("valid/datetime-truncate.toml"), + include_str!("valid/datetime-truncate.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")); -- cgit v1.2.3 From 69576569a7283ba874893fc71b6bff9407d823a6 Mon Sep 17 00:00:00 2001 From: Alan Du Date: Thu, 1 Jun 2017 20:54:17 +0100 Subject: Allow serializing keys with \n in them Use special quoted form Closes https://github.com/alexcrichton/toml-rs/issues/185 --- tests/valid.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/valid.rs') 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")); -- cgit v1.2.3