mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-25 21:26:27 +00:00
45 lines
1021 B
PHP
45 lines
1021 B
PHP
<?php
|
|
|
|
namespace Twig\Tests\Node;
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
use Twig\Node\Node;
|
|
use Twig\Node\SpacelessNode;
|
|
use Twig\Node\TextNode;
|
|
use Twig\Test\NodeTestCase;
|
|
|
|
class SpacelessTest extends NodeTestCase
|
|
{
|
|
public function testConstructor()
|
|
{
|
|
$body = new Node([new TextNode('<div> <div> foo </div> </div>', 1)]);
|
|
$node = new SpacelessNode($body, 1);
|
|
|
|
$this->assertEquals($body, $node->getNode('body'));
|
|
}
|
|
|
|
public function getTests()
|
|
{
|
|
$body = new Node([new TextNode('<div> <div> foo </div> </div>', 1)]);
|
|
$node = new SpacelessNode($body, 1);
|
|
|
|
return [
|
|
[$node, <<<EOF
|
|
// line 1
|
|
ob_start(function () { return ''; });
|
|
echo "<div> <div> foo </div> </div>";
|
|
echo trim(preg_replace('/>\s+</', '><', ob_get_clean()));
|
|
EOF
|
|
],
|
|
];
|
|
}
|
|
}
|