aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGarrett Berg <vitiral@gmail.com>2017-07-09 15:20:29 -0600
committerGarrett Berg <vitiral@gmail.com>2017-07-09 15:20:29 -0600
commitae6096ab2611750fe44d3092b407d496ab94b0b9 (patch)
treeaceb38bf1955662b18e439e2033b4c683cd0b816 /tests
parentffdafc4d361df0d6f6063af50863b7f87f4aa46a (diff)
downloadmilf-rs-ae6096ab2611750fe44d3092b407d496ab94b0b9.tar.gz
milf-rs-ae6096ab2611750fe44d3092b407d496ab94b0b9.zip
pretty arrays
Diffstat (limited to 'tests')
-rw-r--r--tests/pretty.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/pretty.rs b/tests/pretty.rs
index 6758cfb..718ef07 100644
--- a/tests/pretty.rs
+++ b/tests/pretty.rs
@@ -5,6 +5,10 @@ use serde::ser::Serialize;
const EXAMPLE: &str = "\
[example]
+array = [
+ \"item 1\",
+ \"item 2\",
+]
text = '''
this is the first line
this is the second line
@@ -16,5 +20,7 @@ fn test_pretty() {
let value: toml::Value = toml::from_str(EXAMPLE).unwrap();
let mut result = String::with_capacity(128);
value.serialize(&mut toml::Serializer::pretty(&mut result)).unwrap();
+ println!("example:\n{}", EXAMPLE);
+ println!("result:\n{}", result);
assert_eq!(EXAMPLE, &result);
}