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