made inheritance test more robust
authorFabien Potencier <fabien.potencier@gmail.com>
Mon, 5 Jul 2010 14:58:45 +0000 (16:58 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Mon, 5 Jul 2010 14:58:45 +0000 (16:58 +0200)
test/Twig/Tests/Fixtures/tags/inheritance/parent_isolation.test

index 4cfa895..6281671 100644 (file)
@@ -3,14 +3,18 @@
 --TEMPLATE--
 {% extends "base.twig" %}
 {% block content %}{% include "included.twig" %}{% endblock %}
+
 {% block footer %}Footer{% endblock %}
 --TEMPLATE(included.twig)--
 {% extends "base.twig" %}
-{% block content %}{% endblock %}
+{% block content %}Included Content{% endblock %}
 --TEMPLATE(base.twig)--
-{% block content %}{% endblock %}
-{% block footer %}{% endblock %}
+{% block content %}Default Content{% endblock %}
+
+{% block footer %}Default Footer{% endblock %}
 --DATA--
 return array()
 --EXPECT--
+Included Content
+Default Footer
 Footer