fixed include
--HG--
branch : trunk
diff --git a/test.py b/test.py
index 45a5e65..b62c84f 100644
--- a/test.py
+++ b/test.py
@@ -4,16 +4,17 @@
env = Environment(loader=DictLoader({
'child.html': u'''\
{% extends master_layout or 'master.html' %}
-{% include 'helpers.html' %}
+{% include helpers = 'helpers.html' %}
{% macro get_the_answer() %}42{% endmacro %}
+{% title = 'Hello World' %}
{% block body %}
{{ get_the_answer() }}
- {{ conspirate() }}
+ {{ helpers.conspirate() }}
{% endblock %}
''',
'master.html': u'''\
<!doctype html>
-<title>Foo</title>
+<title>{{ title }}</title>
{% block body %}{% endblock %}
''',
'helpers.html': u'''\