summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnssi Kääriäinen <akaariai@gmail.com>2013-10-05 21:15:25 +0300
committerAnssi Kääriäinen <akaariai@gmail.com>2013-10-05 21:16:09 +0300
commit068b1e045f9b022495f662c80dd820aced116aec (patch)
tree4c2cbd6f3dfd8c04ae92d5eaec2289b9361bfde3
parent671757b507a60330ee37ef749a3f3a0301258f88 (diff)
Simplified a test by using CapturedQueriesContext
-rw-r--r--tests/queries/tests.py17
1 files changed, 7 insertions, 10 deletions
diff --git a/tests/queries/tests.py b/tests/queries/tests.py
index a7b0af55a3..4739e21540 100644
--- a/tests/queries/tests.py
+++ b/tests/queries/tests.py
@@ -6,14 +6,13 @@ from operator import attrgetter
import pickle
import unittest
-from django.conf import settings
from django.core.exceptions import FieldError
from django.db import DatabaseError, connection, connections, DEFAULT_DB_ALIAS
from django.db.models import Count, F, Q
from django.db.models.sql.where import WhereNode, EverythingNode, NothingNode
from django.db.models.sql.datastructures import EmptyResultSet
from django.test import TestCase, skipUnlessDBFeature
-from django.test.utils import str_prefix
+from django.test.utils import str_prefix, CaptureQueriesContext
from django.utils import six
from .models import (
@@ -1848,16 +1847,14 @@ class ComparisonTests(TestCase):
class ExistsSql(TestCase):
- def setUp(self):
- settings.DEBUG = True
-
def test_exists(self):
- self.assertFalse(Tag.objects.exists())
+ with CaptureQueriesContext(connection) as captured_queries:
+ self.assertFalse(Tag.objects.exists())
# Ok - so the exist query worked - but did it include too many columns?
- self.assertTrue("id" not in connection.queries[-1]['sql'] and "name" not in connection.queries[-1]['sql'])
-
- def tearDown(self):
- settings.DEBUG = False
+ self.assertEqual(len(captured_queries), 1)
+ qstr = captured_queries[0]
+ id, name = connection.ops.quote_name('id'), connection.ops.quote_name('name')
+ self.assertTrue(id not in qstr and name not in qstr)
class QuerysetOrderedTests(unittest.TestCase):