Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/lookup
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #25609 -- Fixed regression in related field nested ↵Ian Foote2015-10-271-0/+6
| | | | lookup error.
* Fixed #25550 -- Deprecated direct assignment to the ↵Tim Graham2015-10-271-4/+4
| | | | reverse side of a related set.
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-121-2/+10
|
* Fixed #25335 -- Fixed regression where ↵Gavin Wahl2015-09-031-0/+3
| | | | QuerySet.iterator() didn't return an iterator.
* Fixed #21127 -- Started deprecation toward requiring ↵Flavio Curella2015-07-281-2/+2
| | | | on_delete for ForeignKey/OneToOneField
* Fixed #22316 -- Added time filters to TimeField on SQLite.Matthew Somerville2015-06-052-0/+44
| | | | | This was implemented for non-SQLite backends in 1.7 (as a side effect of #16187).
* Fixed #22394 -- Refactored built-in datetime lookups to ↵Jon Dufresne2015-04-201-0/+28
| | | | transforms.
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+1
|
* Replaced set([foo, ...]) by {foo, ...} literals. Refs PR ↵Thomas Chaumeny2014-09-281-1/+1
| | | | | | 3282. Thanks Collin Anderson for the review.
* Removed numbering from the models.py header of some test ↵Loic Bistuer2014-09-241-1/+1
| | | | | | packages. This is a reliqua from the early days of the modeltests/regressiontests era.
* Fixed #22489 -- missing implemenation for search lookupJakub Roztocil2014-05-052-2/+40
| | | | | | | | When custom lookups were added, converting the search lookup to use the new Lookup infrastructure wasn't done. Some changes were needed to the added test, main change done by committer was ensuring the test works on MySQL versions prior to 5.6.
* Corrected many style guide violations that the newest ↵Alex Gaynor2014-03-301-1/+1
| | | | version of flake8 catches
* Fixed #21863 -- supplemented get_lookup() with ↵Anssi Kääriäinen2014-03-071-2/+3
| | | | | | | get_transform() Also fixed #22124 -- Expanded explanation of exactly what is going on in as_sql() methods.
* Fixed many typos in comments and docstrings.Rodolfo Carvalho2014-03-031-1/+1
| | | | Thanks Piotr Kasprzyk for help with the patch.
* Fixed all E226 violationsAlex Gaynor2013-11-031-14/+14
|
* PEP8 cleanupJason Myers2013-11-031-0/+5
| | | | Signed-off-by: Jason Myers <jason@jasonamyers.com>
* Fix all violators of E231Alex Gaynor2013-10-261-2/+2
|
* Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol2013-10-231-0/+3
|
* Removed unused local variables in tests.Tim Graham2013-10-191-3/+3
|
* Added field.attname to Options.name_mapAnssi Kääriäinen2013-07-311-1/+2
| | | | The change also removed allow_explicit_fk from sql/query.py.
* Removed most of absolute_import importsClaude Paroz2013-07-291-1/+1
| | | | | Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way.
* Fixed #20462 - Replaced the str() cast introduced in ↵Loic Bistuer2013-06-261-0/+7
| | | | 273dc55 by force_text()
* Fixed #20462 -- null/non-string regex lookups are now ↵Andrew Clark2013-06-261-0/+15
| | | | | | consistent Thanks to noirbizarre for the report and initial patch.
* Revert "Fixed #20462 - Fixed sqlite regex lookups for ↵Tim Graham2013-06-112-25/+1
| | | | | | | | | null values and non-string fields." This reverts commit 64041f0e6e7a773574d7cde978d16305200004ea. lookup.tests.LookupTests.test_regex_non_string fails under Postgres. We should also try to rewrite the test using an existing model.
* Fixed #20462 - Fixed sqlite regex lookups for null ↵Axel Haustant2013-06-112-1/+25
| | | | values and non-string fields.
* Reverted the introduction of shared_models.Florian Apolloner2013-06-102-399/+407
| | | | | | | The recent improvements should make shared_models obsolete. This reverts commit 1059da8de675442e84381d6366c0be254681753e, reversing changes made to 4fa7f3cdd9bcf50ec4c7f64a31c1dfc02c375f46.
* Revert "Began implementing a shared set of test models ↵Florian Apolloner2013-06-101-140/+144
| | | | | | to speed up tests." This reverts commit 22b7870e40a3ecf022b423de6cd867dcb35a6940.
* Began implementing a shared set of test models to speed ↵Florian Apolloner2013-03-131-144/+140
| | | | up tests.
* Merge pull request #900 from bmispelon/ticket-20022Jacob Kaplan-Moss2013-03-132-407/+399
| | | | Fix #20022: Correctly handle prefixes with url-unsafe characters in reverse()
* Merged regressiontests and modeltests into the test root.Florian Apolloner2013-02-263-0/+747