3.2 - Fix closes Issue14281 - Test for cgi.escape by Brian Landers

This commit is contained in:
Senthil Kumaran 2012-03-13 01:50:27 -07:00
parent 1732ab4f15
commit 47b5ddb9cf
1 changed files with 5 additions and 0 deletions

View File

@ -118,6 +118,11 @@ def gen_result(data, environ):
class CgiTests(unittest.TestCase):
def test_escape(self):
self.assertEqual("test & string", cgi.escape("test & string"))
self.assertEqual("&lt;test string&gt;", cgi.escape("<test string>"))
self.assertEqual("&quot;test string&quot;", cgi.escape('"test string"', True))
def test_strict(self):
for orig, expect in parse_strict_test_cases:
# Test basic parsing