aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/simple.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testing/tests/simple.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs
index eac7c4b..d2111f0 100644
--- a/testing/tests/simple.rs
+++ b/testing/tests/simple.rs
@@ -93,6 +93,18 @@ fn test_attr() {
assert_eq!(t.render().unwrap(), "5");
}
+#[derive(Template)]
+#[template(path = "tuple-attr.html")]
+struct TupleAttrTemplate<'a> {
+ tuple: (&'a str, &'a str),
+}
+
+#[test]
+fn test_tuple_attr() {
+ let t = TupleAttrTemplate { tuple: ("foo", "bar") };
+ assert_eq!(t.render().unwrap(), "foobar");
+}
+
struct NestedHolder {
holder: Holder,