diff options
| author | Tim Graham <timograham@gmail.com> | 2016-02-19 14:13:54 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-02-19 14:21:00 -0500 |
| commit | 032f5a789692d69ab206f902867ff2c3e05c5320 (patch) | |
| tree | 834029528fc6d4bdfb3f480eaf870f5e166d5b22 /django/test/__init__.py | |
| parent | 375e1cfe2b2e1c3c57f882147c34902c6e8189ac (diff) | |
Refs #25735 -- Made @tag decorator importable from django.test.
Diffstat (limited to 'django/test/__init__.py')
| -rw-r--r-- | django/test/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/test/__init__.py b/django/test/__init__.py index 7ba1e7f282..63baf87534 100644 --- a/django/test/__init__.py +++ b/django/test/__init__.py @@ -9,14 +9,14 @@ from django.test.testcases import ( ) from django.test.utils import ( ignore_warnings, modify_settings, override_settings, - override_system_checks, + override_system_checks, tag, ) __all__ = [ 'Client', 'RequestFactory', 'TestCase', 'TransactionTestCase', 'SimpleTestCase', 'LiveServerTestCase', 'skipIfDBFeature', 'skipUnlessAnyDBFeature', 'skipUnlessDBFeature', 'ignore_warnings', - 'modify_settings', 'override_settings', 'override_system_checks' + 'modify_settings', 'override_settings', 'override_system_checks', 'tag', ] # To simplify Django's test suite; not meant as a public API |
