aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests
AgeCommit message (Collapse)Author
2012-10-17Negotiation API finalized. .select_renderers and .select_parsersTom Christie
2012-10-17Added `media_type` to `.parse()` - Consistency with renderer API.Tom Christie
2012-10-17Drop .parse_string_or_stream() - keep API minimal.Tom Christie
2012-10-17Make default field check safe for boolean values whereby 'False' may be an ↵Rob Dobson
acceptable default value
2012-10-15Merge pull request #296 from ulmus/restframework2Tom Christie
Removed serializers.TextField and related tests
2012-10-15Tweak parsers to take parser_contextTom Christie
2012-10-15Removed serializer.TextField and related testsJens Alm
2012-10-15Added tests for TextFieldJens Alm
2012-10-14Documentation for parsersTom Christie
2012-10-11Sanitise JSON error messagesTom Christie
2012-10-10Make sure JSON output in Browseable API is nicely indentedTom Christie
2012-10-10Permissions and throttles no longer have a view attribute on self. ↵Tom Christie
Explicitly passed to .has_permissions(request, view, obj=None) / .allow_request(request, view)
2012-10-09Rename HTMLTemplateRenderer -> HTMLRenderer, DocuemntingHTMLRenderer -> ↵Tom Christie
BrowseableAPIRenderer
2012-10-09Remove Field handling relations/relationship managers - use ↵Tom Christie
RelatedField/ManyRelatedField instead
2012-10-09Tweak authtokenTom Christie
2012-10-08Fix issue where required fields were not being properly validated. Also ↵Tom Christie
make model fields with a default value be not required
2012-10-08Fix fiddly content-overloading bugTom Christie
2012-10-08Fix #285Tom Christie
2012-10-05Remove unused test fileTom Christie
2012-10-05Support PUT for createTom Christie
2012-10-05Add test for non-GET methods to api_view decoratorTom Christie
2012-10-05Remove Parser.can_handle_request()Tom Christie
2012-10-05Docs for template responsesTom Christie
2012-10-05HTMLTemplateRenderer workingTom Christie
2012-10-05User .accepted_renderer, .accepted_media_typeTom Christie
2012-10-05Accepted media type uses most specific of client/renderer media types.Tom Christie
2012-10-04Fix for field to make it easier to access field relationshipsTom Christie
2012-10-04Initial tests for hyperlinked relationshipsTom Christie
2012-10-04Make Import patterns 1.3 compatibleTom Christie
2012-10-04HyperlinkedModelSerializer with working HyperlinkedIdentityField, but no ↵Tom Christie
hyperlinked relations
2012-10-04Tests for default arguments on fieldsTom Christie
2012-10-04Abstract out the app_label on test modelsTom Christie
2012-10-04Abstract out the app_label on test modelsTom Christie
2012-10-03Use either PrimaryKeyRelatedField or ManyPrimaryKeyRelatedField as ↵Tom Christie
appropriate (fixes test)
2012-10-03Added failing test for m2m dataTom Christie
2012-10-03Add m2m update testTom Christie
2012-10-03Add Serializer.save() to clean up differences between serializer.object ↵Tom Christie
being either a DeserializedObject or a model instance
2012-10-03Many2Many testTom Christie
2012-10-03Rename generic viewsTom Christie
2012-10-02Added model form field -> serializer form field mappingTom Christie
2012-10-02Add test to ensure that pk is readonly in PUT requestsTom Christie
2012-10-02Fix bug where pk could be set in post dataTom Christie
2012-10-02URL overrides in settings fixed up slightlyTom Christie
2012-10-01Expand pagination support, add docsTom Christie
2012-09-30Pagination supportTom Christie
2012-09-28Drop oauth tests for now - may pull same test module back in if end up using ↵Tom Christie
django-oauth-plus, but since we've not pulled it in right now...
2012-09-28Add more tests for generic viewsTom Christie
2012-09-28Add more tests for generic viewsTom Christie
2012-09-28Clean up reverse testsTom Christie
2012-09-28Fix broken bits of generic viewsTom Christie