diff options
author | Chris Jerdonek <chris.jerdonek@gmail.com> | 2011-12-25 06:57:55 -0800 |
---|---|---|
committer | Chris Jerdonek <chris.jerdonek@gmail.com> | 2011-12-25 06:57:55 -0800 |
commit | 8ad9282e83f84013b8582008f16bae6e14bb8818 (patch) | |
tree | 3b24ee690c48d5c699d13663ca22403564342c36 /tests/test_examples.py | |
parent | 2c4cc8155b29c31fed69dc327dee21003a4b6a9f (diff) | |
download | pystache-8ad9282e83f84013b8582008f16bae6e14bb8818.tar.gz |
Fixed issue #68: "Remove output_encoding option from Renderer, etc."
Diffstat (limited to 'tests/test_examples.py')
-rw-r--r-- | tests/test_examples.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test_examples.py b/tests/test_examples.py index 4abe673..58ea108 100644 --- a/tests/test_examples.py +++ b/tests/test_examples.py @@ -24,9 +24,6 @@ class TestView(unittest.TestCase): def test_unicode_output(self): self.assertEquals(UnicodeOutput().render(), u'<p>Name: Henri Poincaré</p>') - def test_encoded_output(self): - self.assertEquals(UnicodeOutput().render('utf8'), '<p>Name: Henri Poincar\xc3\xa9</p>') - def test_unicode_input(self): self.assertEquals(UnicodeInput().render(), u'<p>If alive today, Henri Poincaré would be 156 years old.</p>') |