Files
Twig/tests/Fixtures/functions/enum_cases/invalid_enum.test
Fabien Potencier 6d9103ec91 Tweak tests
2024-09-28 23:44:36 +02:00

9 lines
332 B
Plaintext

--TEST--
"enum_cases" function with invalid enum class
--TEMPLATE--
{% for c in enum_cases('Twig\Tests\NonExistentEnum') %}
{{~ c.name }}
{% endfor %}
--EXCEPTION--
Twig\Error\SyntaxError: The first argument of the "enum_cases" function must be the name of an enum, "Twig\Tests\NonExistentEnum" given in "index.twig" at line 2.