mirror of
https://github.com/django/django.git
synced 2025-11-01 12:25:37 +00:00
Refs #24652 -- Used SimpleTestCase where appropriate.
This commit is contained in:
parent
e2b77acedd
commit
be67400b47
93 changed files with 362 additions and 340 deletions
|
|
@ -1,11 +1,11 @@
|
|||
from django.core.urlresolvers import reverse
|
||||
from django.test import TestCase, override_settings
|
||||
from django.test import SimpleTestCase, override_settings
|
||||
|
||||
from .urls import ContactFormViewWithMsg
|
||||
|
||||
|
||||
@override_settings(ROOT_URLCONF='messages_tests.urls')
|
||||
class SuccessMessageMixinTests(TestCase):
|
||||
class SuccessMessageMixinTests(SimpleTestCase):
|
||||
|
||||
def test_set_messages_success(self):
|
||||
author = {'name': 'John Doe',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue