@@ -21,7 +21,7 @@ class TestSimple(unittest.TestCase):
deftest_empty_context(self):
view=ComplexView()
self.assertEquals(pystache.Template('{{#empty_list}}Shouldnt see me {{/empty_list}}{{^empty_list}}Should see me{{/empty_list}}',view).render(),"Should see me")
self.assertEquals(pystache.Renderer('{{#empty_list}}Shouldnt see me {{/empty_list}}{{^empty_list}}Should see me{{/empty_list}}',view).render(),"Should see me")
deftest_callables(self):
view=Lambdas()
...
...
@@ -39,7 +39,7 @@ class TestSimple(unittest.TestCase):