aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests
AgeCommit message (Collapse)Author
2013-09-10Tweaks and docs to object-level model permissions.Tom Christie
2013-09-10Merge branch 'master' of git://github.com/bwreilly/django-rest-framework ↵Tom Christie
into bwreilly-master
2013-09-09removed unnecessary guardian req and view.action parsingbwreilly
2013-09-07first pass at object level permissions and testsbwreilly
2013-09-06Support customizable view EXCEPTION_HANDLERAndy Freeland
Add `api_settings.EXCEPTION_HANDLER` to support custom error responses. Fixes #907.
2013-09-06some properly failing tests, set up for standard permissionsbwreilly
2013-09-06added guardian as optional requirement, stubbed out object-level permission ↵bwreilly
class
2013-09-05Merge pull request #1076 from edmondwong/masterTom Christie
Allow OPTIONS to retrieve PUT field metadata on empty objects
2013-09-03Added test for OPTIONS before object creation from a PUTEdmond Wong
2013-08-31Regression test for #1072Yuri Prezument
2013-08-30Fix failing empty serializer testTom Christie
2013-08-30Drop broken placeholder serializations.Tom Christie
2013-08-29Make ChoiceField.from_native() follow IntegerField behaviour on empty valuesMathieu Pillard
2013-08-28Tweak MAX_PAGINATE_BY behavior in edge case.Tom Christie
Always respect `paginate_by` settings if client does not specify page size. (Even if the developer has misconfigured, so that `paginate_by > max`.)
2013-08-27Merge branch 'max_paginate_by' of ↵Tom Christie
git://github.com/alexander-akhmetov/django-rest-framework into alexander-akhmetov-max_paginate_by
2013-08-26Added max_paginate_by parameterAlexander Akhmetov
2013-08-23Merge branch 'master' into html-form-rendererTom Christie
2013-08-23Fix failing test for router with no trailing slashTom Christie
2013-08-23Merge branch 'display-nested-data' into html-form-rendererTom Christie
2013-08-23Merge pull request #1034 from KrzysiekJ/patch-create-fallback-removalTom Christie
PATCH requests should not be able to create objects.
2013-08-23Add validation error test when passing non-file to FileFieldTom Christie
2013-08-23Merge branch 'fix_937' of git://github.com/aburgel/django-rest-framework ↵Tom Christie
into aburgel-fix_937
2013-08-23force_authenticate(None) also clears session info.Tom Christie
Closes #1055.
2013-08-19Merge branch 'boolean-field-required-1004' of ↵Tom Christie
git://github.com/willkg/django-rest-framework
2013-08-18Updated tests for view name and descriptionChristopher Paolini
Updated the tests to use the default view_name and view_description functions in the formatter through the default in settings.
2013-08-16Add test for BooleanField and requiredWill Kahn-Greene
This tests setting required=True on a BooleanField. Test for issue #1004.
2013-08-13don't set X-Throttle-Wait-Second header if throttle wait is NoneJeremy Satterfield
2013-08-13PATCH requests should not be able to create objects.Krzysztof Jurewicz
2013-08-12Failing test case for nullifying nested objectYuri Prezument
2013-08-12Make OneToOneSource.target nullableYuri Prezument
2013-07-24Add support for removing field files by sending an empty stringAlex Burgel
2013-07-21Fixed testPavel Zinovkin
2013-07-05Use 'force_text', not 'unicode', for compat across python versionTom Christie
2013-07-05Merge branch 'remove-hold-down-control-messages' of ↵Tom Christie
git://github.com/rouge8/django-rest-framework into rouge8-remove-hold-down-control-messages
2013-07-04Remove 'Hold down "Control" ...' message from help_textAndy Freeland
When getting the help_text from a field where `many=True`, Django appends 'Hold down "Control", or "Command" on a Mac, to select more than one.' to the help_text. This makes some sense in Django's ModelForms, but no sense in the API.
2013-07-01Complete testing docsTom Christie
2013-06-29Rename to force_authenticateTom Christie
2013-06-29Added APIClient.authenticate()Tom Christie
2013-06-29Remove unneeded tests.utils, superseeded by APIRequestFactory, APIClientTom Christie
2013-06-29Addeded 'APITestClient.credentials()'Tom Christie
2013-06-28Added APIClientTom Christie
2013-06-28Added APIRequestFactoryTom Christie
2013-06-28Merge branch 'master' into writable-nested-modelserializerTom Christie
2013-06-27Merge branch 'master' of https://github.com/tomchristie/django-rest-frameworkTom Christie
2013-06-27Use imported views to expose python 2.6 bug. Refs #943Tom Christie
2013-06-26Merge pull request #953 from j4mie/prevent-duplicate-routingTom Christie
Prevent dynamically routing to a method that is already routed to.
2013-06-26Raise exception when attempting to dynamically route to a method that is ↵Jamie Matthews
already routed to. Fixes #940
2013-06-26Minor test cleanupTom Christie
2013-06-26Merge pull request #943 from trwired/utf8safedocsTom Christie
Make browsable API views play nice with utf-8
2013-06-26Refactored get_view_description, moved appropriate tests to test_description.pyIgor Kalat