aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/tests
AgeCommit message (Collapse)Author
2012-01-25Refactoring get_name/get_descriptionTom Christie
2012-01-25Merge remote-tracking branch 'btimby/description'Tom Christie
2012-01-24Merge pull request #144 from btimby/masterTom Christie
Fix test_with_content_type_args to pass regardless of JSON library idiosyncracies
2012-01-24Modified test case to pass regardless of JSON libraryBen Timby
2012-01-24Modified test case to pass regardless of JSON libraryBen Timby
2012-01-23Refactored get_name()/get_description()Ben Timby
2012-01-23Fix for testcase test_with_content_type_argsBen Timby
2012-01-23Docstring tidy upTom Christie
2012-01-22Fix tests to work on all supported configurations.Tom Christie
2012-01-21Merge https://github.com/mjumbewu/django-rest-frameworkTom Christie
2012-01-21Drop short status codes.Tom Christie
2012-01-21Add test for PUT with session auth+csrfTom Christie
2012-01-20Add a get_object method to the ModelMixin, and testsMjumbe Wawatu Poe
2012-01-19Merge pull request #130 from flashingpumpkin/masterTom Christie
Added an additional attribute `unknown_form_fields` to `FormResource`
2012-01-19Renamed `unknown_form_fields` to `allow_unknown_form_fields`Alen Mujezinovic
2012-01-18Docstring/whitespace fixes.Ben Timby
2012-01-17Added an additional attribute `unknown_form_fields` to `FormResource`Alen Mujezinovic
If the attribute is set to `True`, the validation method will not raise an `ErrorResponse` with status 400 but silently strip out unexpected fields on the form and only return the validated data.
2012-01-13py25, py26 along with Django12 can't handle assertDictEqual (it was introducedMarko Tibold
in py27)
2012-01-13Got rid of more duplicate tests and put back the tests for #122.Marko Tibold
2012-01-13split renderer and parser complex data test caseMichele Lazzeri
2012-01-12add testcate XMLRendererTestCase.test_render_and_parse_complex_dataMichele Lazzeri
2012-01-11Added test_ugettext_lazy test. Refs #87.Tom Christie
2012-01-11Made suggested cleanups. Refs #121.Tom Christie
2012-01-11Merge pull request #121 from sebpiq/issue-73Tom Christie
Fixes #73. Thanks @sebpiq, @ekohl!
2012-01-11Merge https://github.com/dzen/django-rest-frameworkTom Christie
2012-01-11fixes #122Marko Tibold
tahanks @remcogerlich
2012-01-10fixed issue#73 and added a testSébastien Piquemal
2012-01-10Add test for final() methodBenoit C
2012-01-05Preserve existing query params in PaginatorMixinJamie Matthews
Previously, generation of next/previous links would discard any existing query parameters. This commit introduces a dependency on URLObject, which is used to intelligently parse and modify URLs to ensure existing params are preserved. Addresses issues #107
2012-01-04We can now use @unittests.skipMarko Tibold
2011-12-30Replace field-errors with field_errorsTom Christie
2011-12-29whitespace fixesTom Christie
2011-12-29Add JSONP. Fixes #82Tom Christie
2011-12-21Fixes #94Marko Tibold
Modified alazaro's commit sot that both markdown < 2.1 and >= 2.1 are supported The test checks if either matches the old or the new style.
2011-12-14Fixed test broken by markdown updatealazaro
Removed unused code. No longer needed with markdown 2.1.0.
2011-12-14Use 1.4's CSRFMiddleware, so that PUT and DELETE get CSRF validation if ↵Tom Christie
session authentication is being used
2011-12-14Ensure that external projects do not need to add 'djangorestframework.tests' ↵Tom Christie
to INSTALLED_APPS during testing.
2011-12-12Drop unused importTom Christie
2011-12-12fix copy-paste typo.Marko Tibold
2011-12-11fix mergeCraig Blaszczyk
2011-12-11add xml parserCraig Blaszczyk
2011-12-09Add pagination. Thanks @devioustree!Tom Christie
2011-12-09Merge pull request #62 from txels/masterTom Christie
HTTP OPTIONS support
2011-12-09Drop tests that are broken, because the functionality isn't implemented.Tom Christie
Could be slightly nicer behavior about preserving .POST usability, but it's not there yet. These two test check for that but are currently broken. Leave them out for now.
2011-07-30Added support for OPTIONS method, including a few unit testsCarles Barrobés
2011-07-19Revert pagination stuffTom Christie
This reverts commit d1af04969854433b56ddd002fbb35a956700c4c2.
2011-07-19Added tests for paginationTom Drummond
2011-07-15More tests for overloaded json requests and normal json requestsTom Drummond
2011-07-15Added more tests related to request.POST and request.DATATom Drummond
2011-07-15Added tests to ensure you can access request.POST with ↵Tom Drummond
UserLoggedInAuthentication