Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/fixtures_model_package
Commit message (Collapse)AuthorAgeFilesLines
* Removed support for custom SQL per deprecation timeline.Tim Graham2015-01-174-26/+0
|
* Removed support for initial_data fixtures per ↵Tim Graham2015-01-172-56/+2
| | | | deprecation timeline.
* Fixed #23620 -- Used more specific assertions in the ↵Berker Peksag2014-11-031-3/+2
| | | | Django test suite.
* Removed unneeded override_system_checksClaude Paroz2014-10-211-3/+0
| | | | Refs #23685.
* Fixed #23099 -- Removed usage of deprecated initial data ↵Tim Graham2014-08-081-0/+1
| | | | | | in Django's test suite. Thanks Claude Paroz for assistance with debugging the tests.
* Fixed #16905 -- Added extensible checks (nee validation) ↵Russell Keith-Magee2014-01-201-0/+3
| | | | | | | | | | | 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.
* PEP8 cleanupJason Myers2013-11-031-0/+1
| | | | Signed-off-by: Jason Myers <jason@jasonamyers.com>
* Fix all violators of E231Alex Gaynor2013-10-261-1/+1
|
* Fixed #21268 -- Fixed E303 pep8 warningsAlasdair Nicol2013-10-181-1/+0
|
* Whitespace cleanup.Tim Graham2013-10-102-14/+14
| | | | | | | * Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs.
* Removed unneeded imports in tests's __init__.py and ↵Florian Apolloner2013-09-091-2/+0
| | | | unified them.
* Updated syncdb -> migrate in tests.Tim Graham2013-09-031-3/+3
|
* Fixed #14300 -- Fixed initial SQL location if models is ↵Tim Graham2013-07-243-0/+20
| | | | | | a package. Thanks al_the_x for the report and fheinz for the draft patch.
* Avoided transaction.set_autocommit in tests.Aymeric Augustin2013-07-091-10/+2
| | | | | | It doesn't work as one might expect on a certain database backend where autocommits_when_autocommit_is_off = True. That backend happens to be popular for running tests.
* Stopped calling loaddata with commit=False.Aymeric Augustin2013-06-301-4/+3
| | | | | This was a stealth option only used by the tests, and it isn't useful any more since `atomic` provides nested transactions.
* Defined available_apps in relevant tests.Aymeric Augustin2013-06-101-0/+3
| | | | Fixed #20483.
* Fixed fixtures testing failureAnssi Kääriäinen2013-05-191-1/+4
| | | | | | The failure was caused by generating the same warning from two tests. The second time the same warning was raised it was swallowed by the "once" simplefilter of warnings.
* fix warnings imports in fixtures testsSenko Rasic2013-05-191-1/+2
|
* Fixed #18990 -- Loaddata now complains if fixture ↵Senko Rasic2013-05-191-1/+4
| | | | | | | | | | | | | | doesn't exist If the fixture doesn't exist, loaddata will output a warning. The fixture named "initial_data" is exceptional though; if it doesn't exist, the warning is not emitted. This allows syncdb and flush management commands to attempt to load it without causing spurious warnings. Thanks to Derega, ptone, dirigeant and d1ffuz0r for contributions to the ticket.
* Improved the API of set_autocommit.Aymeric Augustin2013-03-111-4/+4
|
* Added some assertions to enforce the atomicity of atomic.Aymeric Augustin2013-03-111-2/+9
|
* Merged regressiontests and modeltests into the test root.Florian Apolloner2013-02-267-0/+183