aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests
diff options
context:
space:
mode:
authorTom Christie2013-03-18 21:12:05 +0000
committerTom Christie2013-03-18 21:12:05 +0000
commitad3ffe20f0c61f04893a411c741d6343b6494ad1 (patch)
treea296fd4d69c9e1094a2d2ef1b845c52014b48883 /rest_framework/tests
parent75fbfb585861dd5bb3ace62b0673b84e80fb537b (diff)
parent09e4ee7ae332326e77b23bac1539d31e582419e9 (diff)
downloaddjango-rest-framework-ad3ffe20f0c61f04893a411c741d6343b6494ad1.tar.bz2
Merge branch 'master' into basic-nested-serialization
Diffstat (limited to 'rest_framework/tests')
-rw-r--r--rest_framework/tests/status.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/rest_framework/tests/status.py b/rest_framework/tests/status.py
deleted file mode 100644
index e1644a6b..00000000
--- a/rest_framework/tests/status.py
+++ /dev/null
@@ -1,13 +0,0 @@
-"""Tests for the status module"""
-from __future__ import unicode_literals
-from django.test import TestCase
-from rest_framework 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.assertEqual(200, status.HTTP_200_OK)
- self.assertEqual(404, status.HTTP_404_NOT_FOUND)