diff options
Diffstat (limited to 'tests/test_utils/tests.py')
| -rw-r--r-- | tests/test_utils/tests.py | 12 |
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 |
