Commit 7eb513ab authored by Richard Mitchell's avatar Richard Mitchell Committed by Tim Graham
Browse files

Refs #21554 -- Added some assertions to a model_inheritance_regress test.

parent dad8434d
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -461,7 +461,10 @@ class ModelInheritanceTest(TestCase):
            name='John Doe', title='X', state='Y'
        )

        Senator.objects.get(pk=senator.pk)
        senator = Senator.objects.get(pk=senator.pk)
        self.assertEqual(senator.name, 'John Doe')
        self.assertEqual(senator.title, 'X')
        self.assertEqual(senator.state, 'Y')

    def test_inheritance_resolve_columns(self):
        Restaurant.objects.create(name='Bobs Cafe', address="Somewhere",