summaryrefslogtreecommitdiff
path: root/cherrypy/test/test_compat.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-09-10 13:57:16 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-09-10 13:57:16 -0400
commitf5362d72ba2a50f7eda1cfe10a4accafc93fe837 (patch)
tree69715357b6378fc9e734239e687cddaae539cdf5 /cherrypy/test/test_compat.py
parentbaf1cfad6a76e98adc078f36a70a5ceecd6138fb (diff)
downloadcherrypy-f5362d72ba2a50f7eda1cfe10a4accafc93fe837.tar.gz
Remove all files
Diffstat (limited to 'cherrypy/test/test_compat.py')
-rw-r--r--cherrypy/test/test_compat.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/cherrypy/test/test_compat.py b/cherrypy/test/test_compat.py
deleted file mode 100644
index 62cb3b4f..00000000
--- a/cherrypy/test/test_compat.py
+++ /dev/null
@@ -1,19 +0,0 @@
-import unittest
-
-import nose
-
-from cherrypy import _cpcompat as compat
-
-
-class StringTester(unittest.TestCase):
-
- def test_ntob_non_native(self):
- """
- ntob should raise an Exception on unicode.
- (Python 2 only)
-
- See #1132 for discussion.
- """
- if compat.py3k:
- raise nose.SkipTest("Only useful on Python 2")
- self.assertRaises(Exception, compat.ntob, unicode('fight'))