Commit 35cb9dc2 by Michael DeHaan

Work in progress about cleaning up template code.

parent baebe6da
...@@ -81,15 +81,6 @@ class TestUtils(unittest.TestCase): ...@@ -81,15 +81,6 @@ class TestUtils(unittest.TestCase):
assert res == 'hello world' assert res == 'hello world'
def test_template_whitespace(self):
vars = {
'who': 'world',
}
res = template2.template_from_file("test", "template-whitespace", vars)
assert res == 'hello world\n'
def test_template_unicode(self): def test_template_unicode(self):
vars = { vars = {
'who': u'wórld', 'who': u'wórld',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment