diff options
Diffstat (limited to 'tests/test_compat.py')
-rw-r--r-- | tests/test_compat.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/test_compat.py b/tests/test_compat.py deleted file mode 100644 index e371348..0000000 --- a/tests/test_compat.py +++ /dev/null @@ -1,14 +0,0 @@ -import unittest - - -class Test_unquote_bytes_to_wsgi(unittest.TestCase): - def _callFUT(self, v): - from waitress.compat import unquote_bytes_to_wsgi - - return unquote_bytes_to_wsgi(v) - - def test_highorder(self): - val = b"/a%C5%9B" - result = self._callFUT(val) - # PEP 3333 urlunquoted-latin1-decoded-bytes - self.assertEqual(result, "/aÅ\x9b") |