Files
Twig/tests/TokenParser/GuardTokenParserTest.php
Fabien Potencier 861215c507 Fix CS
2026-02-07 09:07:38 +01:00

32 lines
841 B
PHP

<?php
/*
* This file is part of Twig.
*
* (c) Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Twig\Tests\TokenParser;
use PHPUnit\Framework\TestCase;
use Twig\Environment;
use Twig\Error\SyntaxError;
use Twig\Loader\ArrayLoader;
use Twig\Parser;
use Twig\Source;
class GuardTokenParserTest extends TestCase
{
public function testUndefinedHandlers()
{
$this->expectNotToPerformAssertions();
$env = new Environment(new ArrayLoader(), ['cache' => false, 'autoescape' => false]);
$env->registerUndefinedFunctionCallback(static fn ($name) => throw new SyntaxError('boom.'));
(new Parser($env))->parse($env->tokenize(new Source('{% guard function boom %}{% endguard %}', '')));
}
}