aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/templates/import.html2
-rw-r--r--testing/tests/macro.rs12
2 files changed, 14 insertions, 0 deletions
diff --git a/testing/templates/import.html b/testing/templates/import.html
new file mode 100644
index 0000000..87d7969
--- /dev/null
+++ b/testing/templates/import.html
@@ -0,0 +1,2 @@
+{% import "macro.html" -%}
+{%- call thrice(s) %}
diff --git a/testing/tests/macro.rs b/testing/tests/macro.rs
index 72f578e..25d95d8 100644
--- a/testing/tests/macro.rs
+++ b/testing/tests/macro.rs
@@ -14,3 +14,15 @@ fn test_macro() {
let t = MacroTemplate { s: "foo" };
assert_eq!(t.render().unwrap(), "foo foo foo");
}
+
+#[derive(Template)]
+#[template(path = "import.html")]
+struct ImportTemplate<'a> {
+ s: &'a str,
+}
+
+#[test]
+fn test_import() {
+ let t = ImportTemplate { s: "foo" };
+ assert_eq!(t.render().unwrap(), "foo foo foo");
+}