Silenced DeprecationWarning caused by testing deprecated DjangoTestRunner
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15997 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
4749159d48
commit
32517041bd
|
@ -2,12 +2,22 @@
|
|||
Tests for django test runner
|
||||
"""
|
||||
import StringIO
|
||||
import warnings
|
||||
|
||||
from django.core.exceptions import ImproperlyConfigured
|
||||
from django.test import simple
|
||||
from django.test.utils import get_warnings_state, restore_warnings_state
|
||||
from django.utils import unittest
|
||||
|
||||
|
||||
class DjangoTestRunnerTests(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self._warnings_state = get_warnings_state()
|
||||
warnings.filterwarnings('ignore', category=DeprecationWarning,
|
||||
module='django.test.simple')
|
||||
|
||||
def tearDown(self):
|
||||
restore_warnings_state(self._warnings_state)
|
||||
|
||||
def test_failfast(self):
|
||||
class MockTestOne(unittest.TestCase):
|
||||
|
|
Loading…
Reference in New Issue