public function Twig_Tests_Node_AutoEscapeTest::testConstructor in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/twig/twig/test/Twig/Tests/Node/AutoEscapeTest.php \Twig_Tests_Node_AutoEscapeTest::testConstructor()
File
- vendor/
twig/ twig/ test/ Twig/ Tests/ Node/ AutoEscapeTest.php, line 14
Class
Code
public function testConstructor() {
$body = new Twig_Node(array(
new Twig_Node_Text('foo', 1),
));
$node = new Twig_Node_AutoEscape(true, $body, 1);
$this
->assertEquals($body, $node
->getNode('body'));
$this
->assertTrue($node
->getAttribute('value'));
}