diff options
-rw-r--r-- | testing/templates/macro.html | 5 | ||||
-rw-r--r-- | testing/tests/macro.rs | 16 |
2 files changed, 21 insertions, 0 deletions
diff --git a/testing/templates/macro.html b/testing/templates/macro.html new file mode 100644 index 0000000..d3ab77a --- /dev/null +++ b/testing/templates/macro.html @@ -0,0 +1,5 @@ +{% macro thrice(param) -%} + {{ param }} {{ param }} {{ param }} +{%- endmacro %} + +{%- call thrice(s) %} diff --git a/testing/tests/macro.rs b/testing/tests/macro.rs new file mode 100644 index 0000000..320ca2c --- /dev/null +++ b/testing/tests/macro.rs @@ -0,0 +1,16 @@ +#[macro_use] +extern crate askama; + +use askama::Template; + +#[derive(Template)] +#[template(path = "macro.html", print = "all")] +struct MacroTemplate<'a> { + s: &'a str, +} + +#[test] +fn test_macro() { + let t = MacroTemplate { s: "foo" }; + assert_eq!(t.render().unwrap(), "foo foo foo"); +} |