aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests
AgeCommit message (Collapse)Author
2013-04-27Changed DepthTest to have depth=2JC
2013-04-17Remove unneccessary tests from #789, and bit of cleanup.Tom Christie
2013-04-14adding test case for generic view with overriden get_object()Johannes Spielmann
2013-03-29Merge pull request #767 from tomchristie/fix-oauth2-token-onlyTom Christie
Fix OAuth 2 token only
2013-03-28Removed pagination regression special case for Django<1.4. Having ↵Kevin Stone
DjangoFilterBackend return an actual query set fixes this issue. Signed-off-by: Kevin Stone <kevinastone@gmail.com>
2013-03-27Added unit test for failing DjangoFilterBackend on SingleObjectMixin that ↵Kevin Stone
was resolved in b10663e02408404844aca4b362aa24df816aca98 Signed-off-by: Kevin Stone <kevinastone@gmail.com>
2013-03-28Remove client credentials from all OAuth 2 testsPierre Dulac
2013-03-27Complete remove of client checks from oauth2Fernando Rocha
Signed-off-by: Fernando Rocha <fernandogrd@gmail.com>
2013-03-27client credentials should be optional (fix #759)Fernando Rocha
client credentials should only be required on token request Signed-off-by: Fernando Rocha <fernandogrd@gmail.com>
2013-03-25Bulk update, allow_add_remove flagTom Christie
2013-03-22Defer the writable nested modelserializers workTom Christie
2013-03-22Merge masterTom Christie
2013-03-22Merge pull request #744 from tomchristie/basic-bulk-editTom Christie
Basic bulk create and bulk update
2013-03-22Bit of extra tidying and plenty of docsTom Christie
2013-03-22Test moved out of serializer.py into serializer_bulk_updateTom Christie
2013-03-22Add extra tests for errors from incorrect data with multiple create/updateTom Christie
2013-03-21Default date/time fields now return python date/time objects again by defaultTom Christie
2013-03-19Basic bulk create and bulk updateTom Christie
2013-03-18Added bulk create testsTom Christie
2013-03-18Merge branch 'master' into basic-nested-serializationTom Christie
2013-03-18Remove dumbass unneeded testTom Christie
2013-03-15one 2 one nested relationshipsTom Christie
2013-03-14One-to-one writable, nested serializer supportMark Aaron Shirley
2013-03-13force_insert, force_update arguments. Closes #484.Tom Christie
Confirmed by `assertNumQueries(…)` in tests.
2013-03-13Merge branch 'master' of https://github.com/tomchristie/django-rest-frameworkTom Christie
2013-03-13Use django-filter 0.6a1 and add database query count tests for paginated, ↵Tom Christie
filtered lists.
2013-03-13Fix duplicated database queries for paginated lists.Tom Christie
Closes #713.
2013-03-13Merge branch 'num-query-checking' of ↵Tom Christie
https://github.com/mjtamlyn/django-rest-framework
2013-03-12Merge pull request #723 from mjumbewu/multitable-inheritanceTom Christie
Use parent's primary key when model is derived via multitable inheritance
2013-03-12Merge pull request #695 from kuhnza/masterTom Christie
Support for X-HTTP-Method-Override Header
2013-03-12Merge branch 'master' into basic-nested-serializationTom Christie
2013-03-12Merge masterTom Christie
2013-03-12Extra tests for nested serializersTom Christie
2013-03-12Initial support for writable nested serialization (Not ModelSerializer)Tom Christie
2013-03-12Added test for X-HTTP-Method-Override headerDave Kuhn
2013-03-11Further group model inheritance testsMjumbe Wawatu Ukweli
2013-03-11Group the model-inheritance-related tests togetherMjumbe Wawatu Ukweli
2013-03-11Use parent's primary key when model is derived via multitable inheritanceMjumbe Wawatu Ukweli
2013-03-10Failing test to show problem of #720Bouke Haarsma
2013-03-10Add the implementation for TokenHasReadWriteScope permissions w/ oauth 1Pierre Dulac
2013-03-10Add TokenHasReadWriteScope class for permissions based on scopesPierre Dulac
2013-03-08Fix crazy typo.Tom Christie
2013-03-08MergeTom Christie
2013-03-08Fixes for auth header checking.Tom Christie
2013-03-08Py3k fixes.Tom Christie
2013-03-08Tweak implementation, and use FormSet style errorsTom Christie
2013-03-08Merge branch 'master' of https://github.com/bitmonkey/django-rest-framework ↵Tom Christie
into list-deserialization
2013-03-08Add some simple numQueries tests.Marc Tamlyn
2013-03-08Correcy typo.Marc Tamlyn
2013-03-08GenericAPIView now applies filter_backend for list and retrieve api viewstoran billups
Before this commit only the MultipleObjectAPIView would apply a filter_backend, leaving the SingleObjectAPIView to return objects you might otherwise expect to have been filtered out. It's worth mentioning that when a SingleObjectAPIView makes a request for an object that should be excluded, a 404 is the expected result.