summaryrefslogtreecommitdiff
path: root/tests/multiple_database
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2018-03-16 10:54:34 +0100
committerGitHub <noreply@github.com>2018-03-16 10:54:34 +0100
commit362813d6287925b8f63f0b107c55a74d95f5825e (patch)
treeefd69a3deb9e837624279e5abfdd8d55d57dcd7c /tests/multiple_database
parentaeb8c381789ad93866223f8bd07d09ae5e2edd9e (diff)
downloaddjango-362813d6287925b8f63f0b107c55a74d95f5825e.tar.gz
Fixed hanging indentation in various code.
Diffstat (limited to 'tests/multiple_database')
-rw-r--r--tests/multiple_database/tests.py40
1 files changed, 23 insertions, 17 deletions
diff --git a/tests/multiple_database/tests.py b/tests/multiple_database/tests.py
index ab88ecf875..6dd44f6475 100644
--- a/tests/multiple_database/tests.py
+++ b/tests/multiple_database/tests.py
@@ -1068,9 +1068,11 @@ class RouterTestCase(TestCase):
def test_database_routing(self):
marty = Person.objects.using('default').create(name="Marty Alchin")
- pro = Book.objects.using('default').create(title="Pro Django",
- published=datetime.date(2008, 12, 16),
- editor=marty)
+ pro = Book.objects.using('default').create(
+ title='Pro Django',
+ published=datetime.date(2008, 12, 16),
+ editor=marty,
+ )
pro.authors.set([marty])
# Create a book and author on the other database
@@ -1462,10 +1464,12 @@ class RouterTestCase(TestCase):
def test_foreign_key_managers(self):
"FK reverse relations are represented by managers, and can be controlled like managers"
marty = Person.objects.using('other').create(pk=1, name="Marty Alchin")
- Book.objects.using('other').create(pk=1, title="Pro Django",
- published=datetime.date(2008, 12, 16),
- editor=marty)
-
+ Book.objects.using('other').create(
+ pk=1,
+ title='Pro Django',
+ published=datetime.date(2008, 12, 16),
+ editor=marty,
+ )
self.assertEqual(marty.edited.db, 'other')
self.assertEqual(marty.edited.db_manager('default').db, 'default')
self.assertEqual(marty.edited.db_manager('default').all().db, 'default')
@@ -1475,8 +1479,7 @@ class RouterTestCase(TestCase):
pro = Book.objects.using('other').create(title="Pro Django",
published=datetime.date(2008, 12, 16))
- Review.objects.using('other').create(source="Python Monthly",
- content_object=pro)
+ Review.objects.using('other').create(source='Python Monthly', content_object=pro)
self.assertEqual(pro.reviews.db, 'other')
self.assertEqual(pro.reviews.db_manager('default').db, 'default')
@@ -1487,9 +1490,11 @@ class RouterTestCase(TestCase):
# Create a book and author on the other database
mark = Person.objects.using('other').create(name="Mark Pilgrim")
- Book.objects.using('other').create(title="Dive into Python",
- published=datetime.date(2009, 5, 4),
- editor=mark)
+ Book.objects.using('other').create(
+ title='Dive into Python',
+ published=datetime.date(2009, 5, 4),
+ editor=mark,
+ )
sub = Person.objects.filter(name='Mark Pilgrim')
qs = Book.objects.filter(editor__in=sub)
@@ -1505,9 +1510,11 @@ class RouterTestCase(TestCase):
def test_deferred_models(self):
mark_def = Person.objects.using('default').create(name="Mark Pilgrim")
mark_other = Person.objects.using('other').create(name="Mark Pilgrim")
- orig_b = Book.objects.using('other').create(title="Dive into Python",
- published=datetime.date(2009, 5, 4),
- editor=mark_other)
+ orig_b = Book.objects.using('other').create(
+ title='Dive into Python',
+ published=datetime.date(2009, 5, 4),
+ editor=mark_other,
+ )
b = Book.objects.using('other').only('title').get(pk=orig_b.pk)
self.assertEqual(b.published, datetime.date(2009, 5, 4))
b = Book.objects.using('other').only('title').get(pk=orig_b.pk)
@@ -1706,8 +1713,7 @@ class SignalTests(TestCase):
# Create a copy of the models on the 'other' database to prevent
# integrity errors on backends that don't defer constraints checks
- Book.objects.using('other').create(pk=b.pk, title=b.title,
- published=b.published)
+ Book.objects.using('other').create(pk=b.pk, title=b.title, published=b.published)
Person.objects.using('other').create(pk=p.pk, name=p.name)
# Test addition