aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/templates/include.html3
-rw-r--r--testing/templates/included.html1
-rw-r--r--testing/tests/include.rs19
3 files changed, 23 insertions, 0 deletions
diff --git a/testing/templates/include.html b/testing/templates/include.html
new file mode 100644
index 0000000..cdafbad
--- /dev/null
+++ b/testing/templates/include.html
@@ -0,0 +1,3 @@
+{% for s in strs -%}
+ {% include "included.html" %}
+{%- endfor %}
diff --git a/testing/templates/included.html b/testing/templates/included.html
new file mode 100644
index 0000000..ff10488
--- /dev/null
+++ b/testing/templates/included.html
@@ -0,0 +1 @@
+INCLUDED: {{ s }}
diff --git a/testing/tests/include.rs b/testing/tests/include.rs
new file mode 100644
index 0000000..7ddccd2
--- /dev/null
+++ b/testing/tests/include.rs
@@ -0,0 +1,19 @@
+#[macro_use]
+extern crate askama;
+
+use askama::Template;
+
+#[derive(Template)]
+#[template(path = "include.html")]
+struct IncludeTemplate<'a> {
+ strs: &'a [&'a str],
+}
+
+#[test]
+fn test_include() {
+ let strs = vec!["foo", "bar"];
+ let s = IncludeTemplate {
+ strs: &strs,
+ };
+ assert_eq!(s.render(), "INCLUDED: fooINCLUDED: bar")
+}