mirror of
https://github.com/django/django.git
synced 2025-08-02 10:02:41 +00:00
Refs #28478 -- Deprecated TestCase's allow_database_queries and multi_db in favor of databases.
This commit is contained in:
parent
647be06538
commit
8c775391b7
27 changed files with 391 additions and 109 deletions
|
@ -18,7 +18,7 @@ from django.test.utils import captured_stdout
|
|||
|
||||
@modify_settings(INSTALLED_APPS={'append': 'django.contrib.sites'})
|
||||
class SitesFrameworkTests(TestCase):
|
||||
multi_db = True
|
||||
databases = {'default', 'other'}
|
||||
|
||||
@classmethod
|
||||
def setUpTestData(cls):
|
||||
|
@ -236,7 +236,7 @@ class JustOtherRouter:
|
|||
|
||||
@modify_settings(INSTALLED_APPS={'append': 'django.contrib.sites'})
|
||||
class CreateDefaultSiteTests(TestCase):
|
||||
multi_db = True
|
||||
databases = {'default', 'other'}
|
||||
|
||||
@classmethod
|
||||
def setUpTestData(cls):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue