Commit 9aa11b7d by Chris Jerdonek

Merge commit comment on issue #53: "Added simpler test case for issue #53"

From: https://github.com/cjerdonek/pystache/commit/7e130676d3523db4e936e5f8f726c1493b2cbd31
Into: issue_53

Adds a test case to cover issue #53.

Conflicts:
	tests/test_pystache.py
parents 20e89cf6 7e130676
...@@ -94,6 +94,20 @@ class PystacheTests(object): ...@@ -94,6 +94,20 @@ class PystacheTests(object):
ret = pystache.render(template, {"spacing": True}) ret = pystache.render(template, {"spacing": True})
self.assertEquals(ret, "first second third") self.assertEquals(ret, "first second third")
def test_later_list_section_with_escapable_character(self):
"""
This is a simple test case intended to cover issue #53.
The test case failed with markupsafe enabled, as follows:
AssertionError: Markup(u'foo &lt;') != 'foo <'
"""
template = """{{#s1}}foo{{/s1}} {{#s2}}<{{/s2}}"""
context = {'s1': True, 's2': [True]}
actual = pystache.render(template, context)
self.assertEquals(actual, """foo <""")
class PystacheWithoutMarkupsafeTests(PystacheTests, unittest.TestCase): class PystacheWithoutMarkupsafeTests(PystacheTests, unittest.TestCase):
......
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