aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests
diff options
context:
space:
mode:
Diffstat (limited to 'testing/tests')
-rw-r--r--testing/tests/loops.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/tests/loops.rs b/testing/tests/loops.rs
index 4345b4f..809f75e 100644
--- a/testing/tests/loops.rs
+++ b/testing/tests/loops.rs
@@ -93,6 +93,18 @@ fn test_for_method_call() {
#[derive(Template)]
#[template(
+ source = "{% for i in ::std::iter::repeat(\"a\").take(5) %}{{ i }}{% endfor %}",
+ ext = "txt"
+)]
+struct ForPathCallTemplate;
+
+#[test]
+fn test_for_path_call() {
+ assert_eq!(ForPathCallTemplate.render().unwrap(), "aaaaa");
+}
+
+#[derive(Template)]
+#[template(
source = "{% for i in [1, 2, 3, 4, 5][3..] %}{{ i }}{% endfor %}",
ext = "txt"
)]