Opened 12 years ago

Closed 11 years ago

#17797 closed New feature (fixed)

Added PATCH request functionality to django.test.client.Client

Reported by: pfarmer Owned by: nobody
Component: Testing framework Version: dev
Severity: Normal Keywords: Test
Cc: mmitar@… Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Whilst developing with tastypie I found I couldn't write unittests which make PATCH requests to my resources, so quickly scanning through I saw how easy it was to make a Client.patch function and have attached a patch which should apply cleanly to the current trunk (rev 17602).

Attachments (3)

django-test-client-PATCH.patch (1.5 KB ) - added by pfarmer 12 years ago.
django-test-client-PATCH.patch
django-test-client-PATCH-docs.patch (1.0 KB ) - added by pfarmer 12 years ago.
Patch for docs/topics/testing.txt to include Client.patch documentation.
django-test-client-PATCH-tests.patch (1.5 KB ) - added by pfarmer 12 years ago.
Basic testing for client.patch.

Download all attachments as: .zip

Change History (8)

by pfarmer, 12 years ago

django-test-client-PATCH.patch

comment:1 by Ramiro Morales, 12 years ago

Needs documentation: set
Needs tests: set
Triage Stage: UnreviewedAccepted

by pfarmer, 12 years ago

Patch for docs/topics/testing.txt to include Client.patch documentation.

by pfarmer, 12 years ago

Basic testing for client.patch.

comment:2 by pfarmer, 12 years ago

Needs documentation: unset
Needs tests: unset

I've added patches for documentation and some basic testing, testing may need expanding.

comment:3 by Mitar, 12 years ago

Cc: mmitar@… added

+1

comment:4 by tim.dawborn@…, 11 years ago

+1

comment:5 by Julien Phalip <jphalip@…>, 11 years ago

Resolution: fixed
Status: newclosed

In 293f7a21147ad94c92c7d5b3f33cbab2f87b001b:

Fixed #17797 -- Enabled support for PATCH requests in the dummy test client. Thanks to pfarmer for the suggestion and initial patch.

Note: See TracTickets for help on using tickets.
Back to Top