aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests/test_compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'rest_framework/tests/test_compat.py')
-rw-r--r--rest_framework/tests/test_compat.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/rest_framework/tests/test_compat.py b/rest_framework/tests/test_compat.py
deleted file mode 100644
index 4916d19b..00000000
--- a/rest_framework/tests/test_compat.py
+++ /dev/null
@@ -1,13 +0,0 @@
-import django
-from django.test import TestCase
-
-
-class TestCompat(TestCase):
- def test_force_bytes_or_smart_bytes(self):
- from rest_framework.compat import force_bytes_or_smart_bytes
- if django.VERSION >= (1, 5):
- from django.utils.encoding import force_bytes
- self.assertEqual(force_bytes_or_smart_bytes, force_bytes)
- else:
- from django.utils.encoding import smart_str
- self.assertEqual(force_bytes_or_smart_bytes, smart_str)