aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/tests
AgeCommit message (Collapse)Author
2012-09-20Remove old 'djangorestframework directoriesTom Christie
2012-09-16Drop cronky testsTom Christie
2012-09-16Simplify negotiation. Drop MSIE hacks. Etc.Tom Christie
2012-09-14Moved content negotiation out of response. Nicer exception handling now.Tom Christie
2012-09-14Tweak throttles and improve docsTom Christie
2012-09-13Improve throttles and docsTom Christie
2012-09-12Tweaks to Token authTom Christie
2012-09-11Better naming for properties on views, requests and responsesJamie Matthews
renderers is now renderer_classes parsers is now parser_classes authentication is now authentication_classes
2012-09-07Merge pull request #251 from mjumbewu/1.3-supportTom Christie
Fix Django 1.3 compatibility
2012-09-07Fix the tests on 1.3 and HEADMjumbe Wawatu Poe
In the latest Django master code, RequestFactory.put behaves fundamentally differently than it did pre-1.5. By default, it expects an octet string as opposed to a dictionary that it will encode like a multipart form. So, for 1.5 and on, we have to be explicit about the multipart type and pre-encode the data. However, pre-1.5 Django expects a dictionary if the content type is multipart. So, the cleanest thing to do is explicitly handle the versions independently.
2012-09-07Fix Django master support.Mjumbe Wawatu Poe
- Explicitly encode PUT data as multipart, as Django 1.5 no longer does so by default in the test client
2012-09-07Move TokenAuthentication class into djangorestframework.authenticationMjumbe Wawatu Poe
2012-09-07Fix renderer tests.Mjumbe Wawatu Poe
- All MockViews return Response objects - Only one urlpatterns attribute in the module - Renamed `RendererIntegrationTests` to `RendererEndToEndTests`, as the former wasn't being run locally (but it was on Travis...dunno).
2012-09-07Rename the default token class to "BasicToken"Mjumbe Wawatu Poe
2012-09-07Use "Token" as the scheme for token authMjumbe Wawatu Poe
2012-09-07Create a key by default if none is specifiedMjumbe Wawatu Poe
2012-09-07Add a TokenAuthentication class in a sub-applicationMjumbe Wawatu Poe
2012-09-07Add basic serializer testsTom Christie
2012-09-07Remove dumbass meaningless testTom Christie
2012-09-06Refactoring some basicsTom Christie
2012-09-04Refactored throttlingTom Christie
2012-09-04Bits of cleanupTom Christie
2012-09-03View -> APIViewTom Christie
2012-09-03Parsers may return raw data, or a DataAndFiles objectTom Christie
2012-09-03Support generatorsTom Christie
2012-08-28Added serializers and fieldsTom Christie
2012-08-26Drop ImmediateResponseTom Christie
2012-08-24Drop out resources & mixinsTom Christie
2012-08-24Remove PermissionsMixinTom Christie
2012-08-24Remove RequestMixinx / ReponseMixinTom Christie
2012-04-11Merge work from sebpiqTom Christie
2012-04-11Merge with masterTom Christie
2012-02-25Fix broken testsTom Christie
2012-02-25Massive mergeTom Christie
2012-02-23Test for issue #178.Shawn Lewis
This failing test shows that the serializer implementation breaks when a related serializer is passed in via include rather than via fields.
2012-02-23authentication refactor : request.user + tests passSébastien Piquemal
2012-02-23Remove InstanceMixin auto-url magicks.Tom Christie
2012-02-23reverse takes request as a kwarg for compatibility with django's reverseTom Christie
2012-02-23merged + fixed broken testSébastien Piquemal
2012-02-23hack to fix ImmediateResponse renderingSébastien Piquemal
2012-02-21Remove staticviews. Use standard login/logoutTom Christie
2012-02-21Merge master into developTom Christie
2012-02-21reverse gets it's own moduleTom Christie
2012-02-21Merging master into developTom Christie
2012-02-21Pass the request object to `reverse' in the reverse testsDaniel Izquierdo
2012-02-21Move the new `reverse' function from urlresolvers to utilsDaniel Izquierdo
2012-02-21Test the custom reverse() function instead of the one provided by DjangoDaniel Izquierdo
2012-02-20Some cleanupTom Christie
2012-02-17Merge git://github.com/sebpiq/django-rest-framework into developTom Christie
2012-02-14merged with trunkSébastien Piquemal