Vendor update && Started using DoctrineMigrations
This commit is contained in:
67
vendor/twig/extensions/test/Twig/Tests/Node/DebugTest.php
vendored
Normal file
67
vendor/twig/extensions/test/Twig/Tests/Node/DebugTest.php
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
require_once TWIG_LIB_DIR.'/../test/Twig/Tests/Node/TestCase.php';
|
||||
|
||||
class Twig_Tests_Node_DebugTest extends Twig_Tests_Node_TestCase
|
||||
{
|
||||
/**
|
||||
* @covers Twig_Node_Debug::__construct
|
||||
*/
|
||||
public function testConstructor()
|
||||
{
|
||||
$expr = new Twig_Node_Expression_Name('foo', 0);
|
||||
$node = new Twig_Extensions_Node_Debug($expr, 0);
|
||||
$this->assertEquals($expr, $node->getNode('expr'));
|
||||
|
||||
$node = new Twig_Extensions_Node_Debug(null, 0);
|
||||
$this->assertEquals(null, $node->getNode('expr'));
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers Twig_Node_Debug::compile
|
||||
* @dataProvider getTests
|
||||
*/
|
||||
public function testCompile($node, $source, $environment = null)
|
||||
{
|
||||
parent::testCompile($node, $source, $environment);
|
||||
}
|
||||
|
||||
public function getTests()
|
||||
{
|
||||
$tests = array();
|
||||
|
||||
$tests[] = array(new Twig_Extensions_Node_Debug(null, 0), <<<EOF
|
||||
if (\$this->env->isDebug()) {
|
||||
\$vars = array();
|
||||
foreach (\$context as \$key => \$value) {
|
||||
if (!\$value instanceof Twig_Template) {
|
||||
\$vars[\$key] = \$value;
|
||||
}
|
||||
}
|
||||
var_dump(\$vars);
|
||||
}
|
||||
EOF
|
||||
);
|
||||
|
||||
$expr = new Twig_Node_Expression_Name('foo', 0);
|
||||
$node = new Twig_Extensions_Node_Debug($expr, 0);
|
||||
|
||||
$tests[] = array($node, sprintf(<<<EOF
|
||||
if (\$this->env->isDebug()) {
|
||||
var_dump(%s);
|
||||
}
|
||||
EOF
|
||||
, $this->getVariableGetter('foo')));
|
||||
|
||||
return $tests;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user