Files
Twig/tests/Fixtures/functions/include/ignore_missing_exists.test
2019-06-30 14:56:12 +02:00

12 lines
297 B
Plaintext

--TEST--
"include" function
--TEMPLATE--
{{ include("included.twig", ignore_missing = true) }}
NOT DISPLAYED
--TEMPLATE(included.twig)--
{{ include("DOES NOT EXIST") }}
--DATA--
return []
--EXCEPTION--
Twig\Error\LoaderError: Template "DOES NOT EXIST" is not defined in "included.twig" at line 2.