aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/tests
AgeCommit message (Collapse)Author
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
2011-07-13Test for serialitation of dictionaries with keys that collide withgarciasolero
dictionary method names
2011-07-11typo in testTom Christie
2011-07-08remove hardcoded model._meta.many_to_many[0]; update mixin tests to test ↵Craig Blaszczyk
with 0, 1, or multiple groups
2011-07-08add unit tests which show m2m creation failing for through tableCraig Blaszczyk
2011-07-07Tests for CreateModelMixin (unit and integration test via ↵Fernando Zunino
ListOrCreateModelView).
2011-07-01pull in markos changes, minor tweaks to yaml stuffTom Christie
2011-06-30Tidy up oauth imports slightlyTom Christie
2011-06-28Pull in David's initial oauth testsTom Christie
2011-06-26Allow .json .html .xml style urls and also allow these formats to be ↵Michael Fötsch
specified in a "?format=..." query string.
2011-06-25Adding tests for OAuth authentication through django-oauth-plus, a dedicated ↵David Larlet
example project is still missing though
2011-06-25Allow HEAD methodTom Christie
2011-06-25Support for HEAD methodCarles Barrobés
2011-06-21Decimals are a protected_type - let's leave them up to the renderer to deal withTom Christie
2011-06-15Additional test for JSONTom Christie
2011-06-15Merge throttling and fix up a coupla thingsTom Christie
2011-06-15Allow related models to be fully serializedTom Christie
2011-06-14Support for nesting resources etc...Tom Christie
--HG-- rename : djangorestframework/tests/resources.py => djangorestframework/tests/serializer.py
2011-06-14Bits of cleaning up for the throttlingTom Christie
2011-06-13implemeneted #28markotibold
2011-06-12Merge with 10e5aa19eecaec9be297dd8f090eb56c60089a6dmarkotibold
2011-06-12Fix file uploadsTom Christie
2011-06-11small fixmarkotibold
2011-06-11refactored and added new tests for per-user, per-view, and per-resource ↵markotibold
htrottling
2011-06-11* fixed `test_request_throttling_is_per_user` - it didn't make a request for ↵markotibold
the 2nd user * implemented per_resource_throttling + test needs refactoring
2011-06-11implemented per user throttlingmarkotibold
(commit to permissions.py fixes a bug that came out of the unittest)
2011-06-10added some throttling tetst. Can't get per-user-throttling testing to work ↵markotibold
though. :( any help?
2011-06-10Drop test_fail()Tom Christie
2011-06-09Returning the dict from `parse_qs` in `FormParser` fails on forms.Alen Mujezinovic
Use `QueryDict` instead to return a value that is compatible with forms.
2011-06-08Nested tuples serialisation testAlen Mujezinovic
2011-05-24Renderers can now cope with parameterised args. ResponseMixin gets cleaned ↵Tom Christie
up & added Renderer.can_handle_response(), mirroring Parsers.can_handle_request()