diff options
author | Ryan Kelly <ryan@rfk.id.au> | 2021-06-21 16:35:57 +1000 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2021-06-22 11:41:45 +0200 |
commit | 49252d2457f280026c020d0df46733578eb959a5 (patch) | |
tree | 37a9f8935f8e0c8ce1c83f6d2f7c69b30e89e5f7 /testing/tests/macro.rs | |
parent | b318d7cbcded2c6dfc66bbe19687f1246a9a9eab (diff) | |
download | askama-49252d2457f280026c020d0df46733578eb959a5.tar.gz askama-49252d2457f280026c020d0df46733578eb959a5.tar.bz2 askama-49252d2457f280026c020d0df46733578eb959a5.zip |
Fix code generation for macro calls that store args in variables.
Diffstat (limited to 'testing/tests/macro.rs')
-rw-r--r-- | testing/tests/macro.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/tests/macro.rs b/testing/tests/macro.rs index 459b1e2..7f7e4dc 100644 --- a/testing/tests/macro.rs +++ b/testing/tests/macro.rs @@ -53,3 +53,13 @@ fn test_short_circuit() { let t = ShortCircuitTemplate {}; assert_eq!(t.render().unwrap(), "truetruetruefalsetruetrue"); } + +#[derive(Template)] +#[template(path = "nested-macro-args.html")] +struct NestedMacroArgsTemplate {} + +#[test] +fn test_nested_macro_with_args() { + let t = NestedMacroArgsTemplate {}; + assert_eq!(t.render().unwrap(), "first second"); +} |