From ea7267dfc2914cdc340bae1a823c0660daef19e6 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Fri, 17 Nov 2023 11:47:55 +0100 Subject: Add UI tests for macros error message --- testing/tests/ui/macro.rs | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 testing/tests/ui/macro.rs (limited to 'testing/tests/ui/macro.rs') diff --git a/testing/tests/ui/macro.rs b/testing/tests/ui/macro.rs new file mode 100644 index 0000000..01c64bf --- /dev/null +++ b/testing/tests/ui/macro.rs @@ -0,0 +1,27 @@ +use askama::Template; + +#[derive(Template)] +#[template(source = "{%- macro thrice(param) -%} +{{ param }} +{%- endmacro -%} + +{%- call thrice(2, 3) -%}", ext = "html")] +struct InvalidNumberOfArgs; + +#[derive(Template)] +#[template(source = "{%- macro thrice(param, param2) -%} +{{ param }} {{ param2 }} +{%- endmacro -%} + +{%- call thrice() -%}", ext = "html")] +struct InvalidNumberOfArgs2; + +#[derive(Template)] +#[template(source = "{%- macro thrice() -%} +{%- endmacro -%} + +{%- call thrice(1, 2) -%}", ext = "html")] +struct InvalidNumberOfArgs3; + +fn main() { +} -- cgit