mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-19 05:46:41 +00:00
20 lines
286 B
Plaintext
20 lines
286 B
Plaintext
--TEST--
|
|
macro
|
|
--TEMPLATE--
|
|
{% from _self import test %}
|
|
{% import _self as macros %}
|
|
|
|
{% macro test(blocks) -%}
|
|
{{ blocks }}
|
|
{%- endmacro %}
|
|
|
|
{{ test(blocks) }}
|
|
{{ test(blocks: blocks) }}
|
|
{{ macros.test(blocks: blocks) }}
|
|
--DATA--
|
|
return ['blocks' => 'foo']
|
|
--EXPECT--
|
|
foo
|
|
foo
|
|
foo
|