summaryrefslogtreecommitdiff
path: root/tests/requests
AgeCommit message (Collapse)Author
2013-09-10[1.6.x] Took advantage of django.utils.six.moves.urllib.*.Aymeric Augustin
Backport of 6a6428a36 from master.
2013-07-09Fixed #20724 -- Test failure on SQLite.Aymeric Augustin
This test failure happened if the connection's NAME was set to a file system path, and its TEST_NAME wasn't. Thanks Claude for the report. Conflicts: tests/transactions_regress/tests.py Backport of 404870ee1f0d15f6b81d0e0b059068b1f020b2f1 from master.
2013-06-10Defined available_apps in relevant tests.Aymeric Augustin
Fixed #20483.
2013-06-01Fixed #18481 -- Wrapped request.FILES read error in UnreadablePostErrorClaude Paroz
Thanks KyleMac for the report, André Cruz for the initial patch and Hiroki Kiyohara for the tests.
2013-05-18Made test introduced in 566e284c pass on Python 3.Aymeric Augustin
2013-05-18Added test for multipart, non form-data POST.Senko Rasic
Closes #9054. The bug itself is no longer present.
2013-04-03Fixed #20038 -- Better error message for host validation.Baptiste Mispelon
2013-04-01Fixed #20169 -- Ensured that the WSGI request's path is correctly based on ↵Julien Phalip
the `SCRIPT_NAME` environment parameter or the `FORCE_SCRIPT_NAME` setting, regardless of whether or not those have a trailing slash. Thanks to bmispelon for the review.
2013-03-11Made transaction.managed a no-op and deprecated it.Aymeric Augustin
enter_transaction_management() was nearly always followed by managed(). In three places it wasn't, but they will all be refactored eventually. The "forced" keyword argument avoids introducing behavior changes until then. This is mostly backwards-compatible, except, of course, for managed itself. There's a minor difference in _enter_transaction_management: the top self.transaction_state now contains the new 'managed' state rather than the previous one. Django doesn't access self.transaction_state in _enter_transaction_management.
2013-02-28Fixed tests broken in 2ee21d9.Aymeric Augustin
2013-02-26Merged regressiontests and modeltests into the test root.Florian Apolloner