Files
Twig/tests/Fixtures/exceptions/exception_in_extension_include.test

13 lines
308 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 sequence or mapping in "content.twig" at line 4.