summaryrefslogtreecommitdiff
path: root/tests/regressiontests/model_forms_regress/tests.py
Commit message (Expand)AuthorAgeFilesLines
* Merged regressiontests and modeltests into the test root.Florian Apolloner2013-02-261-494/+0
* [py3] Fixed uses of __metaclass__ in tests.Aymeric Augustin2012-08-151-3/+2
* [py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin2012-07-221-4/+5
* Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz2012-06-071-10/+10
* Marked bytestrings with b prefix. Refs #18269Claude Paroz2012-05-191-3/+3
* Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz2012-04-291-1/+1
* Fixed #16921 -- Added assertHTMLEqual and assertHTMLNotEqual assertions, and ...Carl Meyer2012-01-311-1/+1
* Convert the remainder of the relative imports in the tests to be absolute imp...Alex Gaynor2011-10-131-1/+3
* Fixed #15315 -- Added support for the 'widget' argument to modelform_factory....Russell Keith-Magee2011-08-231-0/+14
* Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel2011-07-131-2/+2
* Fixed #14082 -- Use metaclass of provided ModelForm subclass in modelform_fac...Carl Meyer2011-06-071-1/+17
* Fixed a bunch more tests that were failing in Oracle due to false assumptions...Ian Kelly2011-03-091-10/+10
* Updated test assertions that have been deprecated by the move to unittest2. I...Russell Keith-Magee2011-03-031-19/+19
* Fixed the ModelMultipleChoiceFieldTests to pass even on DB backends that do n...Karen Tracey2010-12-181-1/+2
* Fixed #14144 -- Made sure custom validators are called in ModelMultipleChoice...Jannis Leidel2010-12-121-0/+16
* Removed all usages of deprecated TestCase methods (self.fail*). This removed...Alex Gaynor2010-12-041-6/+7
* Fixed #14119 -- fields_for_model no longer returns all fields when fields par...Honza Král2010-10-131-1/+26
* Fixed #12304 -- regression tests to make sure the validation messages for uni...Honza Král2010-10-131-1/+29
* Fixed #5416 -- Added TestCase.assertNumQueries, which tests that a given func...Alex Gaynor2010-10-121-14/+2
* Fixed #7048 -- Added ClearableFileInput widget to clear file fields. Thanks f...Jannis Leidel2010-10-011-2/+70
* Fixed #11905: Raise an error on model form creation if a non-existent field w...Karen Tracey2010-09-111-0/+39
* Fixed #13095 -- `formfield_callback` keyword argument is now more sane and wo...Justin Bronn2010-09-101-0/+44
* Fixed #8426 - added 'helptext' CSS class to help text in forms to aid in stylingLuke Plant2010-08-061-1/+1
* Fixed #13613 -- Ensure that forms.URLField and forms.EmailField are used on a...Russell Keith-Magee2010-08-051-2/+36
* Fixed #11183 - BaseForm init leaves pointers pointing back to base_fieldsLuke Plant2010-03-081-1/+14
* Removed a stray print from [12690]. Thanks for catching that, apollo13.Joseph Kocherhans2010-03-061-1/+0
* Fixed #12960. The return value of ModelForm.clean() is now applied to the mod...Joseph Kocherhans2010-03-061-0/+20
* Fixed #12420. Now that OneToOneField allows assignment of None, stop guarding...Joseph Kocherhans2010-02-231-1/+33
* Fixed #12285. ModelForm raises a more informative error if it doesn't have a ...Joseph Kocherhans2010-02-231-1/+6
* Fixed #12698. Model.clean() used with a ModelForm no longer causes a KeyError...Joseph Kocherhans2010-02-101-3/+16
* Fixed #12596. Calling super from a ModelForm's clean method is once again opt...Joseph Kocherhans2010-01-211-0/+21
* Fixed #12215: Added len to ModelChoiceIterator. Thanks Alex and Tobias.Karen Tracey2009-12-131-1/+13
* Fixed #11149 -- Don't call save_form_data on file-type fields multiple times ...Karen Tracey2009-05-191-1/+14
* Fixed test suite on Oracle that was broken by using keyword "date" as a field...Matt Boersma2009-05-071-6/+4
* Fixed #10349 -- Modified ManyToManyFields to allow initial form values to be ...Russell Keith-Magee2009-05-021-6/+37
* Fixed #10156: `ModelMultipleChoiceField.clean` now does a single query instea...Jacob Kaplan-Moss2009-04-181-0/+61