[Twig Bridge] Fixed bug in ExpressionExtension

This commit is contained in:
Richard van den Brand 2014-01-13 09:10:47 +00:00 committed by Fabien Potencier
parent 795599911e
commit 521eee42d8
3 changed files with 35 additions and 3 deletions

View File

@ -30,7 +30,7 @@ class ExpressionExtension extends \Twig_Extension
); );
} }
private function createExpression($expression) public function createExpression($expression)
{ {
return new Expression($expression); return new Expression($expression);
} }

View File

@ -0,0 +1,30 @@
<?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 Symfony\Bridge\Twig\Extension\ExpressionExtension;
use Symfony\Component\ExpressionLanguage\Expression;
class ExpressionExtensionTest extends \PHPUnit_Framework_TestCase
{
protected $helper;
public function testExpressionCreation()
{
$template = "{{ expression('1 == 1') }}";
$twig = new \Twig_Environment(new \Twig_Loader_String(), array('debug' => true, 'cache' => false, 'autoescape' => true, 'optimizations' => 0));
$twig->addExtension(new ExpressionExtension());
$output = $twig->render($template);
$this->assertEquals('1 == 1', $output);
}
}

View File

@ -28,7 +28,8 @@
"symfony/translation": "~2.2", "symfony/translation": "~2.2",
"symfony/yaml": "~2.0", "symfony/yaml": "~2.0",
"symfony/security": "~2.4", "symfony/security": "~2.4",
"symfony/stopwatch": "~2.2" "symfony/stopwatch": "~2.2",
"symfony/expression-language": "~2.4"
}, },
"suggest": { "suggest": {
"symfony/form": "For using the FormExtension", "symfony/form": "For using the FormExtension",
@ -38,7 +39,8 @@
"symfony/translation": "For using the TranslationExtension", "symfony/translation": "For using the TranslationExtension",
"symfony/yaml": "For using the YamlExtension", "symfony/yaml": "For using the YamlExtension",
"symfony/security": "For using the SecurityExtension", "symfony/security": "For using the SecurityExtension",
"symfony/stopwatch": "For using the StopwatchExtension" "symfony/stopwatch": "For using the StopwatchExtension",
"symfony/expression": "For using the ExpressionExtension"
}, },
"autoload": { "autoload": {
"psr-0": { "Symfony\\Bridge\\Twig\\": "" } "psr-0": { "Symfony\\Bridge\\Twig\\": "" }