From f5f18a38ab990910ca43448212c70938992c9787 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sun, 21 Nov 2010 17:51:41 +0000 Subject: Fixed #14749 -- added support for using Django's file object as context managers. Thanks to Florian Apolloner for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14671 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/test_utils/python_25.py | 28 --------------------------- 1 file changed, 28 deletions(-) delete mode 100644 tests/regressiontests/test_utils/python_25.py (limited to 'tests/regressiontests/test_utils/python_25.py') 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 -- cgit v1.3