1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Fix autodetector creation of RenameModel migration to capitalize model names

This commit is contained in:
Chris Beaven
2014-03-11 12:23:45 +13:00
parent 05daaf2eea
commit 40f6ca54f8
2 changed files with 6 additions and 6 deletions

View File

@@ -203,8 +203,8 @@ class AutodetectorTests(TestCase):
# Right action?
action = migration.operations[0]
self.assertEqual(action.__class__.__name__, "RenameModel")
self.assertEqual(action.old_name, "author")
self.assertEqual(action.new_name, "writer")
self.assertEqual(action.old_name, "Author")
self.assertEqual(action.new_name, "Writer")
# Right number of migrations for related field rename?
self.assertEqual(len(changes['otherapp']), 1)
@@ -236,8 +236,8 @@ class AutodetectorTests(TestCase):
# Right actions?
action = migration.operations[0]
self.assertEqual(action.__class__.__name__, "RenameModel")
self.assertEqual(action.old_name, "author")
self.assertEqual(action.new_name, "writer")
self.assertEqual(action.old_name, "Author")
self.assertEqual(action.new_name, "Writer")
# Right number of migrations for related field rename?
self.assertEqual(len(changes['otherapp']), 1)