23 lines
359 B
Plaintext
Executable File
23 lines
359 B
Plaintext
Executable File
--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 />
|