simple.test in Zircon Profile 8
Same filename in this branch
Same filename and directory in other branches
File
vendor/twig/twig/test/Twig/Tests/Fixtures/tags/spaceless/simple.testView source
--TEST--
"spaceless" tag removes whites between HTML tags
--TEMPLATE--
{% spaceless %}
<div> <div> foo </div> </div>
{% endspaceless %}
--DATA--
return array()
--EXPECT--
<div><div> foo </div></div>