aboutsummaryrefslogtreecommitdiff
path: root/tests/valid.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-01-15 12:56:35 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-01-15 12:56:35 -0800
commit931114a13ca2f6b4fe83328899a64ac4aa1956ec (patch)
tree44ba952313219bbe0a31b20337112b4aa2286467 /tests/valid.rs
parent0d8ce979a4d98c895f5f75826e8c49f02a64f311 (diff)
downloadmilf-rs-931114a13ca2f6b4fe83328899a64ac4aa1956ec.tar.gz
milf-rs-931114a13ca2f6b4fe83328899a64ac4aa1956ec.zip
Add a few more tests from the toml-lang repo
Diffstat (limited to 'tests/valid.rs')
-rw-r--r--tests/valid.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/valid.rs b/tests/valid.rs
index 6ff0d80..72e9d94 100644
--- a/tests/valid.rs
+++ b/tests/valid.rs
@@ -166,3 +166,12 @@ test!(unicode_escape,
test!(unicode_literal,
include_str!("valid/unicode-literal.toml"),
include_str!("valid/unicode-literal.json"));
+test!(hard_example,
+ include_str!("valid/hard_example.toml"),
+ include_str!("valid/hard_example.json"));
+test!(example2,
+ include_str!("valid/example2.toml"),
+ include_str!("valid/example2.json"));
+test!(example3,
+ include_str!("valid/example-v0.3.0.toml"),
+ include_str!("valid/example-v0.3.0.json"));