summaryrefslogtreecommitdiff
path: root/tests/model_fields
AgeCommit message (Collapse)Author
2013-08-30[1.6.x] Fixed #20999 - Allow overriding formfield class with choices, ↵Carl Meyer
without subclass restrictions. Refs #18162. Thanks claudep and mjtamlyn for review. Backport of 7211741fc5d50425 from master.
2013-08-29[1.6.x] Fixed #14786 -- Fixed get_db_prep_lookup calling get_prep_value ↵Tim Graham
twice if prepared is False. Thanks homm for the report and Aramgutang and lrekucki for work on the patch. Backport of f19a3669b8 from master
2013-08-15[1.6.x] Fixed #20895 -- Made check management command warn if a BooleanField ↵Alasdair Nicol
does not have a default value Thanks to Collin Anderson for the suggestion and Tim Graham for reviewing the patch. Backport of 22c6497f99 from master
2013-07-12[1.6.x] Fixed #20740 -- GenericIPAddressField should pass protocol to ↵Tim Graham
formfield() Thanks Jeff250. Backport of f2cb94f1c0 from master
2013-06-29[1.6.x] Fixed #20660 -- Do not try to delete an unset FieldFileClaude Paroz
Thanks stanislas.guerra at gmail.com for the report and Baptiste Mispelon for the review. Backport of ea3fe78a9d from master.
2013-05-21Use assertIsInstance in tests.Marc Tamlyn
Gives much nicer errors when it fails.
2013-05-14Fixed #19934 - Use of Pillow is now preferred over PIL.Daniel Lindsley
This starts the deprecation period for PIL (support to end in 1.8).
2013-05-10Fixed #17365, #17366, #18727 -- Switched to discovery test runner.Carl Meyer
Thanks to Preston Timmons for the bulk of the work on the patch, especially updating Django's own test suite to comply with the requirements of the new runner. Thanks also to Jannis Leidel and Mahdi Yusuf for earlier work on the patch and the discovery runner. Refs #11077, #17032, and #18670.
2013-05-08Marked tests of BinaryFields as expected failures on MySQL and Python 3.Aymeric Augustin
Current ports of MySQLdb are very buggy in this area.
2013-04-12Modified model_fields for unittest2 discovery.Preston Timmons
2013-03-24Fixed #15124 -- Changed the default for BooleanField.Aymeric Augustin
Thanks to the many contributors who updated and improved the patch over the life of this ticket.
2013-03-02Add a BinaryField model fieldClaude Paroz
Thanks Michael Jung, Charl Botha and Florian Apolloner for review and help on the patch.
2013-02-26Merged regressiontests and modeltests into the test root.Florian Apolloner