askama/testing/tests/extend.rs
Michael Pollind ce73e73720 feat: add caller pattern and adjust syntax to closer match jinja
Signed-off-by: Michael Pollind <mpollind@gmail.com>
2025-05-22 22:50:40 +02:00

28 lines
523 B
Rust

use askama::Template;
#[test]
fn test_macro_in_block_inheritance() {
#[derive(Template)]
#[template(
source = r#"{% extends "extend_and_import.html" %}
{%- import "macro.html" as m2 -%}
{%- macro another(param) -%}
--> {{ param }}
{%- endmacro -%}
{% block header -%}
{% call m1::twice(1) %}{% endcall %}
{% call m2::twice(2) %}{% endcall %}
{% call another(3) %}{% endcall %}
{%- endblock -%}
"#,
ext = "txt"
)]
struct A;
assert_eq!(A.render().unwrap(), "\n\n1 1\n2 2\n--> 3");
}