aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2017-03-07 21:00:44 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2017-03-07 21:00:44 +0100
commit0eeb5d1b2d998f3ea56b5682f618a57443cd8aef (patch)
tree2764ff47873085265047cc155e71af5f465f37d9 /testing
parenta0a3e4018c9fe1d23e0b53651804939a2711edde (diff)
downloadaskama-0eeb5d1b2d998f3ea56b5682f618a57443cd8aef.tar.gz
askama-0eeb5d1b2d998f3ea56b5682f618a57443cd8aef.tar.bz2
askama-0eeb5d1b2d998f3ea56b5682f618a57443cd8aef.zip
Add test for nested loops and loops over slices (see #6, #7, #9)
Diffstat (limited to 'testing')
-rw-r--r--testing/templates/nested-for.html6
-rw-r--r--testing/tests/loops.rs17
2 files changed, 23 insertions, 0 deletions
diff --git a/testing/templates/nested-for.html b/testing/templates/nested-for.html
new file mode 100644
index 0000000..6e0cd72
--- /dev/null
+++ b/testing/templates/nested-for.html
@@ -0,0 +1,6 @@
+{% for seq in seqs -%}
+ {{ loop.index }}
+ {% for v in seq -%}
+ {{ loop.index0 }}{{ v }}
+ {%- endfor -%}
+{% endfor %}
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");
+}