diff options
Diffstat (limited to 'django/test/__init__.py')
| -rw-r--r-- | django/test/__init__.py | 41 |
1 files changed, 29 insertions, 12 deletions
diff --git a/django/test/__init__.py b/django/test/__init__.py index d1f953a8dd..485298e8e7 100644 --- a/django/test/__init__.py +++ b/django/test/__init__.py @@ -1,21 +1,38 @@ """Django Unit Test framework.""" -from django.test.client import ( - AsyncClient, AsyncRequestFactory, Client, RequestFactory, -) +from django.test.client import AsyncClient, AsyncRequestFactory, Client, RequestFactory from django.test.testcases import ( - LiveServerTestCase, SimpleTestCase, TestCase, TransactionTestCase, - skipIfDBFeature, skipUnlessAnyDBFeature, skipUnlessDBFeature, + LiveServerTestCase, + SimpleTestCase, + TestCase, + TransactionTestCase, + skipIfDBFeature, + skipUnlessAnyDBFeature, + skipUnlessDBFeature, ) from django.test.utils import ( - ignore_warnings, modify_settings, override_settings, - override_system_checks, tag, + ignore_warnings, + modify_settings, + override_settings, + override_system_checks, + tag, ) __all__ = [ - 'AsyncClient', 'AsyncRequestFactory', 'Client', 'RequestFactory', - 'TestCase', 'TransactionTestCase', 'SimpleTestCase', 'LiveServerTestCase', - 'skipIfDBFeature', 'skipUnlessAnyDBFeature', 'skipUnlessDBFeature', - 'ignore_warnings', 'modify_settings', 'override_settings', - 'override_system_checks', 'tag', + "AsyncClient", + "AsyncRequestFactory", + "Client", + "RequestFactory", + "TestCase", + "TransactionTestCase", + "SimpleTestCase", + "LiveServerTestCase", + "skipIfDBFeature", + "skipUnlessAnyDBFeature", + "skipUnlessDBFeature", + "ignore_warnings", + "modify_settings", + "override_settings", + "override_system_checks", + "tag", ] |
