Caught (and tested) the warning added at r17393 in the corresponding test. Refs #17580.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17403 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Aymeric Augustin 2012-01-28 20:34:02 +00:00
parent 6b16580aaa
commit 58bcb7d161
1 changed files with 6 additions and 1 deletions

View File

@ -264,7 +264,12 @@ class NewDatabaseTests(BaseDateTimeTests):
@requires_tz_support
def test_datetime_from_date(self):
dt = datetime.date(2011, 9, 1)
Event.objects.create(dt=dt)
with warnings.catch_warnings(record=True) as recorded:
warnings.simplefilter('always')
Event.objects.create(dt=dt)
self.assertEqual(len(recorded), 1)
msg = str(recorded[0].message)
self.assertTrue(msg.startswith("DateTimeField received a naive datetime"))
event = Event.objects.get()
self.assertEqual(event.dt, datetime.datetime(2011, 9, 1, tzinfo=EAT))