diff options
author | Alan Du <alanhdu@gmail.com> | 2017-06-01 20:35:39 +0100 |
---|---|---|
committer | Alan Du <alanhdu@gmail.com> | 2017-06-01 20:57:06 +0100 |
commit | dc407a6833b8358855fe5fb949b4253874311f47 (patch) | |
tree | 557c8b065e5e296d404de4ad6e551bc0fab17888 /tests | |
parent | 36431af975092578648225c60a8494cb0d5f6844 (diff) | |
download | milf-rs-dc407a6833b8358855fe5fb949b4253874311f47.tar.gz milf-rs-dc407a6833b8358855fe5fb949b4253874311f47.zip |
Truncate fractional seconds to picoseconds
Close https://github.com/alexcrichton/toml-rs/issues/186
Diffstat (limited to 'tests')
-rw-r--r-- | tests/valid.rs | 3 | ||||
-rw-r--r-- | tests/valid/datetime-truncate.json | 6 | ||||
-rw-r--r-- | tests/valid/datetime-truncate.toml | 1 |
3 files changed, 10 insertions, 0 deletions
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")); diff --git a/tests/valid/datetime-truncate.json b/tests/valid/datetime-truncate.json new file mode 100644 index 0000000..34a432f --- /dev/null +++ b/tests/valid/datetime-truncate.json @@ -0,0 +1,6 @@ +{ + "bestdayever": { + "type": "datetime", + "value": "1987-07-05T17:45:00.123456789012Z" + } +} diff --git a/tests/valid/datetime-truncate.toml b/tests/valid/datetime-truncate.toml new file mode 100644 index 0000000..05de841 --- /dev/null +++ b/tests/valid/datetime-truncate.toml @@ -0,0 +1 @@ +bestdayever = 1987-07-05T17:45:00.123456789012345Z |