Support nose framework for the whole test suite.
--HG--
branch : trunk
diff --git a/tests/test_parser.py b/tests/test_parser.py
index ca9506d..99a7e47 100644
--- a/tests/test_parser.py
+++ b/tests/test_parser.py
@@ -8,6 +8,8 @@
"""
from jinja2 import Environment
+import conftest
+
PHP_SYNTAX = '''\
<!-- I'm a comment, I'm not interesting -->\
@@ -96,7 +98,7 @@
env = Environment('<%', '%>', '${', '}', '<%#', '%>', '%')
tmpl = env.from_string(MAKO_SYNTAX)
assert [int(x.strip()) for x in tmpl.render(seq=range(5)).split()] == \
- range(5)
+ range(5)
env = Environment('<%', '%>', '${', '}', '<%#', '%>', '%', '##')
tmpl = env.from_string(MAKO_SYNTAX_LINECOMMENTS)