template_from_string.test

File

drupal/core/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/template_from_string.test
View source
--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