Tested with r8507, on Debian Etch, sqlite and Python 2.4.4
======================================================================
FAIL: Doctest: modeltests.reserved_names.models.__test__.API_TESTS
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 2180, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for modeltests.reserved_names.models.__test__.API_TESTS
File "/srv/lib/django-trunk/tests/modeltests/reserved_names/models.py", line unknown line number, in API_TESTS
----------------------------------------------------------------------
File "/srv/lib/django-trunk/tests/modeltests/reserved_names/models.py", line ?, in modeltests.reserved_names.models.__test__.API_TESTS
Failed example:
Thing.objects.filter(where__month=1)
Expected:
[<Thing: a>]
Got:
[]
======================================================================
FAIL: Doctest: modeltests.basic.models.__test__.API_TESTS
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 2180, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for modeltests.basic.models.__test__.API_TESTS
File "/srv/lib/django-trunk/tests/modeltests/basic/models.py", line unknown line number, in API_TESTS
----------------------------------------------------------------------
File "/srv/lib/django-trunk/tests/modeltests/basic/models.py", line ?, in modeltests.basic.models.__test__.API_TESTS
Failed example:
Article.objects.get(pub_date__year=2005, pub_date__month=7)
Exception raised:
Traceback (most recent call last):
File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1267, in __run
compileflags, 1) in test.globs
File "<doctest modeltests.basic.models.__test__.API_TESTS[14]>", line 1, in ?
Article.objects.get(pub_date__year=2005, pub_date__month=7)
File "/usr/lib/python2.4/site-packages/django/db/models/manager.py", line 81, in get
return self.get_query_set().get(*args, **kwargs)
File "/usr/lib/python2.4/site-packages/django/db/models/query.py", line 300, in get
raise self.model.DoesNotExist("%s matching query does not exist."
DoesNotExist: Article matching query does not exist.
----------------------------------------------------------------------
File "/srv/lib/django-trunk/tests/modeltests/basic/models.py", line ?, in modeltests.basic.models.__test__.API_TESTS
Failed example:
Article.objects.get(pub_date__year=2005, pub_date__month=7, pub_date__day=28)
Exception raised:
Traceback (most recent call last):
File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 1267, in __run
compileflags, 1) in test.globs
File "<doctest modeltests.basic.models.__test__.API_TESTS[15]>", line 1, in ?
Article.objects.get(pub_date__year=2005, pub_date__month=7, pub_date__day=28)
File "/usr/lib/python2.4/site-packages/django/db/models/manager.py", line 81, in get
return self.get_query_set().get(*args, **kwargs)
File "/usr/lib/python2.4/site-packages/django/db/models/query.py", line 300, in get
raise self.model.DoesNotExist("%s matching query does not exist."
DoesNotExist: Article matching query does not exist.
----------------------------------------------------------------------
File "/srv/lib/django-trunk/tests/modeltests/basic/models.py", line ?, in modeltests.basic.models.__test__.API_TESTS
Failed example:
Article.objects.filter(pub_date__year=2005, pub_date__month=7)
Expected:
[<Article: Area woman programs in Python>]
Got:
[]
======================================================================
FAIL: Doctest: regressiontests.model_regress.models.__test__.API_TESTS
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 2180, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for regressiontests.model_regress.models.__test__.API_TESTS
File "/srv/lib/django-trunk/tests/regressiontests/model_regress/models.py", line unknown line number, in API_TESTS
----------------------------------------------------------------------
File "/srv/lib/django-trunk/tests/regressiontests/model_regress/models.py", line ?, in regressiontests.model_regress.models.__test__.API_TESTS
Failed example:
[p.when for p in Party.objects.filter(when__month = 1)]
Expected:
[datetime.date(1999, 1, 1)]
Got:
[]
----------------------------------------------------------------------
File "/srv/lib/django-trunk/tests/regressiontests/model_regress/models.py", line ?, in regressiontests.model_regress.models.__test__.API_TESTS
Failed example:
[p.when for p in Party.objects.filter(when__month = 12)]
Expected:
[datetime.date(1999, 12, 31), datetime.date(1998, 12, 31)]
Got:
[]
======================================================================
FAIL: Doctest: regressiontests.mail.tests
----------------------------------------------------------------------
Traceback (most recent call last):
File "/usr/lib/python2.4/site-packages/django/test/_doctest.py", line 2180, in runTest
raise self.failureException(self.format_failure(new.getvalue()))
AssertionError: Failed doctest test for regressiontests.mail.tests
File "/srv/lib/django-trunk/tests/regressiontests/mail/tests.py", line 1, in tests
----------------------------------------------------------------------
File "/srv/lib/django-trunk/tests/regressiontests/mail/tests.py", line 12, in regressiontests.mail.tests
Failed example:
message['Subject']
Expected:
<email.header.Header instance...>
Got:
<email.Header.Header instance at 0x2aaaabbda710>
----------------------------------------------------------------------
File "/srv/lib/django-trunk/tests/regressiontests/mail/tests.py", line 27, in regressiontests.mail.tests
Failed example:
message['Subject']
Expected:
<email.header.Header instance...>
Got:
<email.Header.Header instance at 0x2aaaabbe4290>
----------------------------------------------------------------------
Ran 449 tests in 303.805s
FAILED (failures=4)