diff options
author | Alex Crichton <alex@alexcrichton.com> | 2017-06-01 17:57:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-01 17:57:13 -0500 |
commit | 00c1763e0b89337f980d18888bb1935f250afd7b (patch) | |
tree | fcfde60a5d645769d536f9b7c0726560ed225a14 /tests/valid | |
parent | 36431af975092578648225c60a8494cb0d5f6844 (diff) | |
parent | 2dfc9fedd30bf3d40c4c3e97adc06fe3aad34361 (diff) | |
download | milf-rs-00c1763e0b89337f980d18888bb1935f250afd7b.tar.gz milf-rs-00c1763e0b89337f980d18888bb1935f250afd7b.zip |
Merge pull request #187 from alanhdu/master
More fuzzing fixes
Diffstat (limited to 'tests/valid')
-rw-r--r-- | tests/valid/datetime-truncate.json | 6 | ||||
-rw-r--r-- | tests/valid/datetime-truncate.toml | 1 | ||||
-rw-r--r-- | tests/valid/key-quote-newline.json | 3 | ||||
-rw-r--r-- | tests/valid/key-quote-newline.toml | 1 |
4 files changed, 11 insertions, 0 deletions
diff --git a/tests/valid/datetime-truncate.json b/tests/valid/datetime-truncate.json new file mode 100644 index 0000000..8c512e1 --- /dev/null +++ b/tests/valid/datetime-truncate.json @@ -0,0 +1,6 @@ +{ + "bestdayever": { + "type": "datetime", + "value": "1987-07-05T17:45:00.123456789Z" + } +} 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 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 |