summaryrefslogtreecommitdiff
path: root/tests/num_in_field.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/num_in_field.rs')
-rw-r--r--tests/num_in_field.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/num_in_field.rs b/tests/num_in_field.rs
new file mode 100644
index 0000000..ab90f0d
--- /dev/null
+++ b/tests/num_in_field.rs
@@ -0,0 +1,22 @@
+/// {foo1} {foo2}
+#[derive(displaydoc::Display)]
+pub struct Test {
+ foo1: String,
+ foo2: String,
+}
+
+fn assert_display<T: std::fmt::Display>(input: T, expected: &'static str) {
+ let out = format!("{}", input);
+ assert_eq!(expected, out);
+}
+
+#[test]
+fn does_it_print() {
+ assert_display(
+ Test {
+ foo1: "hi".into(),
+ foo2: "hello".into(),
+ },
+ "hi hello",
+ );
+}