You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
359 B
22 lines
359 B
--TEST--
|
|
macro
|
|
--TEMPLATE--
|
|
{% import _self as test %}
|
|
{% from _self import test %}
|
|
|
|
{% macro test(a, b) -%}
|
|
{{ a|default('a') }}<br />
|
|
{{- b|default('b') }}<br />
|
|
{%- endmacro %}
|
|
|
|
{{ test.test() }}
|
|
{{ test() }}
|
|
{{ test.test(1, "c") }}
|
|
{{ test(1, "c") }}
|
|
--DATA--
|
|
return array();
|
|
--EXPECT--
|
|
a<br />b<br />
|
|
a<br />b<br />
|
|
1<br />c<br />
|
|
1<br />c<br />
|
|
|