summaryrefslogtreecommitdiff
path: root/tests/test_utils/tests.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-03-21 13:30:40 -0400
committerTim Graham <timograham@gmail.com>2014-03-21 13:36:46 -0400
commitbf5430a20b65b3e76a2f8cd2580101e0baa59f82 (patch)
treeee2f0a27113d4bcf8e79c3d296936ed70834dfa6 /tests/test_utils/tests.py
parentb71f183d2e4eb9397ae52c139eb0863be731b778 (diff)
Removed django.test.simple and django.test._doctest per deprecation timeline.
refs #17365, #17366, #18727.
Diffstat (limited to 'tests/test_utils/tests.py')
-rw-r--r--tests/test_utils/tests.py12
1 files changed, 1 insertions, 11 deletions
diff --git a/tests/test_utils/tests.py b/tests/test_utils/tests.py
index 365341d50f..d3c7aec1f3 100644
--- a/tests/test_utils/tests.py
+++ b/tests/test_utils/tests.py
@@ -11,8 +11,7 @@ from django.http import HttpResponse
from django.template.loader import render_to_string
from django.test import SimpleTestCase, TestCase, skipIfDBFeature, skipUnlessDBFeature
from django.test.html import HTMLParseError, parse_html
-from django.test.utils import (CaptureQueriesContext,
- IgnoreAllDeprecationWarningsMixin, override_settings)
+from django.test.utils import CaptureQueriesContext, override_settings
from django.utils import six
from .models import Person
@@ -623,15 +622,6 @@ class AssertFieldOutputTests(SimpleTestCase):
self.assertFieldOutput(MyCustomField, {}, {}, empty_value=None)
-class DoctestNormalizerTest(IgnoreAllDeprecationWarningsMixin, SimpleTestCase):
-
- def test_normalizer(self):
- from django.test.simple import make_doctest
- suite = make_doctest("test_utils.doctest_output")
- failures = unittest.TextTestRunner(stream=six.StringIO()).run(suite)
- self.assertEqual(failures.failures, [])
-
-
# for OverrideSettingsTests
def fake_view(request):
pass