Unittest for Issue 21511 by Christie Wilson bobcatfish@gmail.com.
This commit is contained in:
parent
770319d6bd
commit
e173c07502
|
@ -137,6 +137,13 @@ zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz''')
|
|||
for p, e in self.STRINGS:
|
||||
self.assertEqual(quopri.decodestring(e), p)
|
||||
|
||||
@withpythonimplementation
|
||||
def test_decodestring_double_equals(self):
|
||||
# Issue 21511 - Ensure that byte string is compared to byte string
|
||||
# instead of int byte value
|
||||
decoded_value, encoded_value = (b"123=four", b"123==four")
|
||||
self.assertEqual(quopri.decodestring(encoded_value), decoded_value)
|
||||
|
||||
@withpythonimplementation
|
||||
def test_idempotent_string(self):
|
||||
for p, e in self.STRINGS:
|
||||
|
|
Loading…
Reference in New Issue