add more tests

This commit is contained in:
2026-08-11 17:41:09 -05:00
parent 9b44006c18
commit 7a32f9c8d3
14 changed files with 7023 additions and 6345 deletions
+46
View File
@@ -0,0 +1,46 @@
==================
Firstof Basic
==================
{% firstof var1 var2 "default" %}
---
(template
(content)
(firstof
(filtered_value
(value
(variable_attribute
(identifier))))
(filtered_value
(value
(variable_attribute
(identifier))))
(filtered_value
(value
(literal
(string)))))
(content))
==================
Firstof With As
==================
{% firstof var1 var2 as result %}
---
(template
(content)
(firstof
(filtered_value
(value
(variable_attribute
(identifier))))
(filtered_value
(value
(variable_attribute
(identifier))))
(identifier))
(content))