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_SpacelessTest
extends Twig_Test_NodeTestCase
15 * @covers Twig_Node_Spaceless::__construct
17 public function testConstructor()
19 $body = new Twig_Node(array(new Twig_Node_Text('<div> <div> foo </div> </div>', 1)));
20 $node = new Twig_Node_Spaceless($body, 1);
22 $this->assertEquals($body, $node->getNode('body'));
26 * @covers Twig_Node_Spaceless::compile
27 * @dataProvider getTests
29 public function testCompile($node, $source, $environment = null)
31 parent
::testCompile($node, $source, $environment);
34 public function getTests()
36 $body = new Twig_Node(array(new Twig_Node_Text('<div> <div> foo </div> </div>', 1)));
37 $node = new Twig_Node_Spaceless($body, 1);
43 echo "<div> <div> foo </div> </div>";
44 echo trim(preg_replace('/>\s+</', '><', ob_get_clean()));