Commit 5a33ce25 authored by Luke Plant's avatar Luke Plant
Browse files

[1.2.X] Fixed #14919 - test isolation issue with...

[1.2.X] Fixed #14919 - test isolation issue with model_inheritance.ModelInheritanceTests.test_multiple_table and views.DefaultsTests.test_csrf_token_in_404

test_csrf_token_in_404 was assuming DEBUG = False, and test_multiple_table
was leaving DEBUG = True.  Both issues have been fixed.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14930 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 6c357cc9
Loading
Loading
Loading
Loading
+11 −7
Original line number Diff line number Diff line
@@ -266,12 +266,16 @@ class ModelInheritanceTests(TestCase):
        # select_related works with fields from the parent object as if they
        # were a normal part of the model.
        old_DEBUG = settings.DEBUG
        starting_queries = len(connection.queries)
        try:
            settings.DEBUG = True

            starting_queries = len(connection.queries)
            ItalianRestaurant.objects.all()[0].chef
            self.assertEqual(len(connection.queries) - starting_queries, 2)

            starting_queries = len(connection.queries)
            ItalianRestaurant.objects.select_related("chef")[0].chef
            self.assertEqual(len(connection.queries) - starting_queries, 1)
        finally:
            settings.DEBUG = old_DEBUG

+10 −5
Original line number Diff line number Diff line
@@ -60,11 +60,16 @@ class DefaultsTests(TestCase):
        The 404 page should have the csrf_token available in the context
        """
        # See ticket #14565
        old_DEBUG = settings.DEBUG
        try:
            settings.DEBUG = False # so we get real 404, not technical
            for url in self.non_existing_urls:
                response = self.client.get(url)
                csrf_token = response.context['csrf_token']
                self.assertNotEqual(str(csrf_token), 'NOTPROVIDED')
                self.assertNotEqual(str(csrf_token), '')
        finally:
            settings.DEBUG = old_DEBUG

    def test_server_error(self):
        "The server_error view raises a 500 status"