Files
Chamilo/vendor/symfony/twig-bridge/Tests/Extension/ExpressionExtensionTest.php
2025-04-10 12:24:57 +02:00

31 lines
903 B
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bridge\Twig\Tests\Extension;
use PHPUnit\Framework\TestCase;
use Symfony\Bridge\Twig\Extension\ExpressionExtension;
use Twig\Environment;
use Twig\Loader\ArrayLoader;
class ExpressionExtensionTest extends TestCase
{
public function testExpressionCreation()
{
$template = "{{ expression('1 == 1') }}";
$twig = new Environment(new ArrayLoader(array('template' => $template)), array('debug' => true, 'cache' => false, 'autoescape' => 'html', 'optimizations' => 0));
$twig->addExtension(new ExpressionExtension());
$output = $twig->render('template');
$this->assertEquals('1 == 1', $output);
}
}