aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/tests/status.py
diff options
context:
space:
mode:
authorTom Christie2012-09-20 13:19:43 +0100
committerTom Christie2012-09-20 13:19:43 +0100
commit87dae4d8549c02fa9a57adb3bb876d249dae1f79 (patch)
treef3cf967490b79045ddf2be03e1e2ecebb23f58eb /djangorestframework/tests/status.py
parent4b691c402707775c3048a90531024f3bc5be6f91 (diff)
downloaddjango-rest-framework-87dae4d8549c02fa9a57adb3bb876d249dae1f79.tar.bz2
Remove old 'djangorestframework directories
Diffstat (limited to 'djangorestframework/tests/status.py')
-rw-r--r--djangorestframework/tests/status.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/djangorestframework/tests/status.py b/djangorestframework/tests/status.py
deleted file mode 100644
index 53ecae11..00000000
--- a/djangorestframework/tests/status.py
+++ /dev/null
@@ -1,12 +0,0 @@
-"""Tests for the status module"""
-from django.test import TestCase
-from djangorestframework import status
-
-
-class TestStatus(TestCase):
- """Simple sanity test to check the status module"""
-
- def test_status(self):
- """Ensure the status module is present and correct."""
- self.assertEquals(200, status.HTTP_200_OK)
- self.assertEquals(404, status.HTTP_404_NOT_FOUND)