Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/model_validation
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #21127 -- Started deprecation toward requiring ↵Flavio Curella2015-07-281-2/+2
| | | | on_delete for ForeignKey/OneToOneField
* Refs #24652 -- Used SimpleTestCase where appropriate.Simon Charette2015-05-201-2/+2
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-2/+2
|
* Fixed #23338 -- Added warning when unique=True on ForeigKeyDiego Guimarães2014-11-281-0/+5
| | | | | Thanks Jonathan Lindén for the initial patch, and Tim Graham and Gabe Jackson for the suggestions.
* Corrected expected test output to allow for cleanups in ↵Russell Keith-Magee2014-03-031-3/+3
| | | | signal and compatibility checks.
* Edited model and field checks for grammar and consistency.Russell Keith-Magee2014-03-031-2/+2
|
* Fixed #16905 -- Added extensible checks (nee validation) ↵Russell Keith-Magee2014-01-201-16/+20
| | | | | | | | | | | framework This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844.
* Fixed E124 pep8 warnings.Loic Bistuer2013-12-101-6/+8
|
* Fixed #21391 -- Allow model signals to lazily reference ↵Simon Charette2013-11-241-1/+33
| | | | their senders.
* PEP8Jason Myers2013-11-031-0/+1
| | | | Signed-off-by: Jason Myers <jason@jasonamyers.com>
* Fixed #21375 -- related_name='+' clashed with other '+' ↵Anssi Kääriäinen2013-11-022-0/+23
| | | | names
* Fixes a Python 3.x regression introduced in a19e9d80Łukasz Langa2013-05-181-3/+2
|
* Fixed #20430 - Enable iterable of iterables for model ↵Donald Stufft2013-05-183-0/+41
choices Allows for any iterable, not just lists or tuples, to be used as the inner item for a list of choices in a model.