From 28182a1549a6546750d3f9834cb35686b89c3cf9 Mon Sep 17 00:00:00 2001 From: max Date: Wed, 13 Dec 2023 15:33:34 +0200 Subject: Bugfix in `is_attr_self()` Signed-off-by: max --- testing/tests/calls.rs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'testing') diff --git a/testing/tests/calls.rs b/testing/tests/calls.rs index 052f34f..28d7491 100644 --- a/testing/tests/calls.rs +++ b/testing/tests/calls.rs @@ -80,3 +80,22 @@ fn test_one_func_binop() { }; assert_eq!(t.render().unwrap(), "246"); } + +fn double_attr_arg_helper(x: u32) -> u32 { + x * x + x +} + +#[derive(askama::Template)] +#[template( + source = "{{ self::double_attr_arg_helper(self.x.0 + 2) }}", + ext = "txt" +)] +struct DoubleAttrArg { + x: (u32,), +} + +#[test] +fn test_double_attr_arg() { + let t = DoubleAttrArg { x: (10,) }; + assert_eq!(t.render().unwrap(), "156"); +} -- cgit