aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/template_from_string.test
blob: 41428da190a96bc0144c7302bb01697964b1b704 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
"template_from_string" function
--TEMPLATE--
{% include template_from_string(template) %}

{% include template_from_string("Hello {{ name }}") %}
--DATA--
return array('name' => 'Fabien', 'template' => "Hello {{ name }}")
--EXPECT--
Hello Fabien
Hello Fabien