4 * This file is part of Twig.
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 class Twig_Tests_Node_BlockTest
extends Twig_Test_NodeTestCase
15 * @covers Twig_Node_Block::__construct
17 public function testConstructor()
19 $body = new Twig_Node_Text('foo', 1);
20 $node = new Twig_Node_Block('foo', $body, 1);
22 $this->assertEquals($body, $node->getNode('body'));
23 $this->assertEquals('foo', $node->getAttribute('name'));
27 * @covers Twig_Node_Block::compile
28 * @dataProvider getTests
30 public function testCompile($node, $source, $environment = null)
32 parent
::testCompile($node, $source, $environment);
35 public function getTests()
37 $body = new Twig_Node_Text('foo', 1);
38 $node = new Twig_Node_Block('foo', $body, 1);
43 public function block_foo(\$context, array \$blocks = array())