Files
Twig/tests/Fixtures/exceptions/exception_in_extension_include.test
2019-06-30 14:51:54 +02:00

13 lines
292 B
Plaintext

--TEST--
Exception thrown from an include for an extension error
--TEMPLATE--
{% include 'content.twig' %}
--TEMPLATE(content.twig)--
{{ random([]) }}
--DATA--
return []
--EXCEPTION--
Twig\Error\RuntimeError: The random function cannot pick from an empty array in "content.twig" at line 4.