summaryrefslogtreecommitdiff
path: root/tests/regressiontests/test_utils/python_25.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regressiontests/test_utils/python_25.py')
-rw-r--r--tests/regressiontests/test_utils/python_25.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/regressiontests/test_utils/python_25.py b/tests/regressiontests/test_utils/python_25.py
deleted file mode 100644
index 4adea6c080..0000000000
--- a/tests/regressiontests/test_utils/python_25.py
+++ /dev/null
@@ -1,28 +0,0 @@
-from __future__ import with_statement
-
-from django.test import TestCase
-
-from models import Person
-
-
-class AssertNumQueriesTests(TestCase):
- def test_simple(self):
- with self.assertNumQueries(0):
- pass
-
- with self.assertNumQueries(1):
- Person.objects.count()
-
- with self.assertNumQueries(2):
- Person.objects.count()
- Person.objects.count()
-
- def test_failure(self):
- with self.assertRaises(AssertionError) as exc_info:
- with self.assertNumQueries(2):
- Person.objects.count()
- self.assertIn("1 queries executed, 2 expected", str(exc_info.exception))
-
- with self.assertRaises(TypeError):
- with self.assertNumQueries(4000):
- raise TypeError