aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests
diff options
context:
space:
mode:
Diffstat (limited to 'testing/tests')
-rw-r--r--testing/tests/loops.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/tests/loops.rs b/testing/tests/loops.rs
index 4776729..bb245a4 100644
--- a/testing/tests/loops.rs
+++ b/testing/tests/loops.rs
@@ -16,3 +16,20 @@ fn test_for() {
};
assert_eq!(s.render(), "0. A\n1. alfa\n2. 1\n");
}
+
+
+#[derive(Template)]
+#[template(path = "nested-for.html", print = "code")]
+struct NestedForTemplate<'a> {
+ seqs: Vec<&'a [&'a str]>,
+}
+
+#[test]
+fn test_nested_for() {
+ let alpha = vec!["a", "b", "c"];
+ let numbers = vec!["one", "two"];
+ let s = NestedForTemplate {
+ seqs: vec![&alpha, &numbers],
+ };
+ assert_eq!(s.render(), "1\n 0a1b2c2\n 0one1two");
+}