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

13 lines
296 B
Plaintext

--TEST--
Exception thrown from a child for an extension error
--TEMPLATE--
{% extends 'base.twig' %}
--TEMPLATE(base.twig)--
{{ random([]) }}
--DATA--
return []
--EXCEPTION--
Twig\Error\RuntimeError: The "random" function cannot pick from an empty sequence or mapping in "base.twig" at line 4.