aboutsummaryrefslogtreecommitdiff
path: root/test-suite/tests/valid.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2018-10-01 10:05:36 -0700
committerGitHub <noreply@github.com>2018-10-01 10:05:36 -0700
commit480457fdbd8b3a78e30d7cd4b7f045e38ff77740 (patch)
tree019d9a7a18b1512d099e8a8b704caad1b3c97b1f /test-suite/tests/valid.rs
parentf998fbe360b4ea37f27793a55831e988415b4b6d (diff)
parent2059589f5420bed3d490822fc9560db3c3a21515 (diff)
downloadmilf-rs-480457fdbd8b3a78e30d7cd4b7f045e38ff77740.tar.gz
milf-rs-480457fdbd8b3a78e30d7cd4b7f045e38ff77740.zip
Merge pull request #263 from Deewiant/final-quote-fix
Avoid panic on pretty string ending in single quote
Diffstat (limited to 'test-suite/tests/valid.rs')
-rw-r--r--test-suite/tests/valid.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/tests/valid.rs b/test-suite/tests/valid.rs
index d032ba5..7c1691c 100644
--- a/test-suite/tests/valid.rs
+++ b/test-suite/tests/valid.rs
@@ -250,3 +250,7 @@ test!(table_array_nest_no_keys,
test!(dotted_keys,
include_str!("valid/dotted-keys.toml"),
include_str!("valid/dotted-keys.json"));
+
+test!(quote_surrounded_value,
+ include_str!("valid/quote-surrounded-value.toml"),
+ include_str!("valid/quote-surrounded-value.json"));