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

9 lines
322 B
Plaintext

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