summaryrefslogtreecommitdiff
path: root/tests/regressiontests/model_forms_regress/tests.py
AgeCommit message (Expand)Author
2013-02-26Merged regressiontests and modeltests into the test root.Florian Apolloner
2012-08-15[py3] Fixed uses of __metaclass__ in tests.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-01-31Fixed #16921 -- Added assertHTMLEqual and assertHTMLNotEqual assertions, and ...Carl Meyer
2011-10-13Convert the remainder of the relative imports in the tests to be absolute imp...Alex Gaynor
2011-08-23Fixed #15315 -- Added support for the 'widget' argument to modelform_factory....Russell Keith-Magee
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-06-07Fixed #14082 -- Use metaclass of provided ModelForm subclass in modelform_fac...Carl Meyer
2011-03-09Fixed a bunch more tests that were failing in Oracle due to false assumptions...Ian Kelly
2011-03-03Updated test assertions that have been deprecated by the move to unittest2. I...Russell Keith-Magee
2010-12-18Fixed the ModelMultipleChoiceFieldTests to pass even on DB backends that do n...Karen Tracey
2010-12-12Fixed #14144 -- Made sure custom validators are called in ModelMultipleChoice...Jannis Leidel
2010-12-04Removed all usages of deprecated TestCase methods (self.fail*). This removed...Alex Gaynor
2010-10-13Fixed #14119 -- fields_for_model no longer returns all fields when fields par...Honza Král
2010-10-13Fixed #12304 -- regression tests to make sure the validation messages for uni...Honza Král
2010-10-12Fixed #5416 -- Added TestCase.assertNumQueries, which tests that a given func...Alex Gaynor
2010-10-01Fixed #7048 -- Added ClearableFileInput widget to clear file fields. Thanks f...Jannis Leidel
2010-09-11Fixed #11905: Raise an error on model form creation if a non-existent field w...Karen Tracey
2010-09-10Fixed #13095 -- `formfield_callback` keyword argument is now more sane and wo...Justin Bronn
2010-08-06Fixed #8426 - added 'helptext' CSS class to help text in forms to aid in stylingLuke Plant
2010-08-05Fixed #13613 -- Ensure that forms.URLField and forms.EmailField are used on a...Russell Keith-Magee
2010-03-08Fixed #11183 - BaseForm init leaves pointers pointing back to base_fieldsLuke Plant
2010-03-06Removed a stray print from [12690]. Thanks for catching that, apollo13.Joseph Kocherhans
2010-03-06Fixed #12960. The return value of ModelForm.clean() is now applied to the mod...Joseph Kocherhans
2010-02-23Fixed #12420. Now that OneToOneField allows assignment of None, stop guarding...Joseph Kocherhans
2010-02-23Fixed #12285. ModelForm raises a more informative error if it doesn't have a ...Joseph Kocherhans
2010-02-10Fixed #12698. Model.clean() used with a ModelForm no longer causes a KeyError...Joseph Kocherhans
2010-01-21Fixed #12596. Calling super from a ModelForm's clean method is once again opt...Joseph Kocherhans
2009-12-13Fixed #12215: Added len to ModelChoiceIterator. Thanks Alex and Tobias.Karen Tracey
2009-05-19Fixed #11149 -- Don't call save_form_data on file-type fields multiple times ...Karen Tracey
2009-05-07Fixed test suite on Oracle that was broken by using keyword "date" as a field...Matt Boersma
2009-05-02Fixed #10349 -- Modified ManyToManyFields to allow initial form values to be ...Russell Keith-Magee
2009-04-18Fixed #10156: `ModelMultipleChoiceField.clean` now does a single query instea...Jacob Kaplan-Moss