Tom Christie
a8ed7f9189
Merge pull request #130 from flashingpumpkin/master
...
Added an additional attribute `unknown_form_fields` to `FormResource`
2012-01-19 10:55:31 -08:00
Alen Mujezinovic
ec5badf739
Renamed unknown_form_fields
to allow_unknown_form_fields
2012-01-19 15:52:26 +00:00
Ben Timby
0a5ca000ed
Docstring/whitespace fixes.
2012-01-18 22:59:30 -05:00
Alen Mujezinovic
0a167a54fd
Added an additional attribute unknown_form_fields
to FormResource
...
If the attribute is set to `True`, the validation method will not
raise an `ErrorResponse` with status 400 but silently strip out
unexpected fields on the form and only return the validated data.
2012-01-17 11:01:32 +00:00
Marko Tibold
5f4096ca28
py25, py26 along with Django12 can't handle assertDictEqual (it was introduced
...
in py27)
2012-01-13 23:01:16 +01:00
Marko Tibold
905dd2ed9d
Got rid of more duplicate tests and put back the tests for #122 .
2012-01-13 21:57:49 +01:00
Michele Lazzeri
21776c0de2
split renderer and parser complex data test case
2012-01-13 10:11:34 +01:00
Michele Lazzeri
1bec6f2d5e
add testcate XMLRendererTestCase.test_render_and_parse_complex_data
2012-01-12 18:04:18 +01:00
Tom Christie
ed8b296e75
Added test_ugettext_lazy test. Refs #87 .
2012-01-11 16:16:22 +00:00
Tom Christie
c995ab397c
Made suggested cleanups. Refs #121 .
2012-01-11 14:56:12 +00:00
Tom Christie
e8ddbf435c
Merge pull request #121 from sebpiq/issue-73
...
Fixes #73 .
Thanks @sebpiq, @ekohl!
2012-01-11 06:53:32 -08:00
Tom Christie
b522cc8e51
Merge https://github.com/dzen/django-rest-framework
2012-01-11 14:37:25 +00:00
Marko Tibold
aaa14a3e17
fixes #122
...
tahanks @remcogerlich
2012-01-11 10:27:14 +01:00
Sébastien Piquemal
792bc4d608
fixed issue#73 and added a test
2012-01-10 20:38:01 +02:00
Benoit C
96e91f5841
Add test for final() method
2012-01-10 00:23:19 +01:00
Jamie Matthews
18535c7a38
Preserve existing query params in PaginatorMixin
...
Previously, generation of next/previous links would discard any existing
query parameters. This commit introduces a dependency on URLObject, which
is used to intelligently parse and modify URLs to ensure existing params
are preserved.
Addresses issues #107
2012-01-05 14:07:31 +00:00
Marko Tibold
47e4f0d37d
We can now use @unittests.skip
2012-01-04 11:58:22 +01:00
Tom Christie
904f197474
Replace field-errors with field_errors
2011-12-30 15:33:13 +00:00
Tom Christie
07349597ab
whitespace fixes
2011-12-29 13:31:12 +00:00
Tom Christie
1bdc5eacc6
Add JSONP. Fixes #82
2011-12-29 13:24:52 +00:00
Marko Tibold
90ddec03b7
Fixes #94
...
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-21 01:06:24 +01:00
alazaro
4a60575132
Fixed test broken by markdown update
...
Removed unused code. No longer needed with markdown 2.1.0.
2011-12-14 23:36:13 +01:00
Tom Christie
d53f7f45b4
Use 1.4's CSRFMiddleware, so that PUT and DELETE get CSRF validation if session authentication is being used
2011-12-14 20:10:06 +00:00
Tom Christie
050f07e7b1
Ensure that external projects do not need to add 'djangorestframework.tests' to INSTALLED_APPS during testing.
2011-12-14 19:23:48 +00:00
Tom Christie
5c6adb1cca
Drop unused import
2011-12-12 12:09:12 +00:00
Marko Tibold
7b6a6caa96
fix copy-paste typo.
2011-12-12 12:09:10 +01:00
Craig Blaszczyk
e84bf2140c
fix merge
2011-12-11 18:30:43 +00:00
Craig Blaszczyk
0632e946f9
add xml parser
2011-12-11 18:27:40 +00:00
Tom Christie
5db422c9d3
Add pagination. Thanks @devioustree!
2011-12-09 13:37:53 +00:00
Tom Christie
325ee1e3a4
Merge pull request #62 from txels/master
...
HTTP OPTIONS support
2011-12-09 04:40:14 -08:00
Tom Christie
a3f483a6b1
Drop tests that are broken, because the functionality isn't implemented.
...
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-12-09 11:27:34 +00:00
Carles Barrobés
3b413dbb40
Added support for OPTIONS method, including a few unit tests
2011-07-30 22:23:53 +02:00
Tom Christie
8136a94ebe
Revert pagination stuff
...
This reverts commit d1af049698
.
2011-07-19 20:38:13 +01:00
Tom Drummond
d1af049698
Added tests for pagination
2011-07-19 18:00:50 +01:00
Tom Drummond
a53101bea9
More tests for overloaded json requests and normal json requests
2011-07-15 17:19:12 +01:00
Tom Drummond
7e2e3cbf6e
Added more tests related to request.POST and request.DATA
2011-07-15 16:59:50 +01:00
Tom Drummond
6bbfbf77e2
Added tests to ensure you can access request.POST with UserLoggedInAuthentication
2011-07-15 16:14:35 +01:00
garciasolero
cc7a77c477
Test for serialitation of dictionaries with keys that collide with
...
dictionary method names
2011-07-13 14:12:34 +02:00
Tom Christie
4c590df712
typo in test
2011-07-11 20:53:05 +01:00
Craig Blaszczyk
91b9d0b2a3
remove hardcoded model._meta.many_to_many[0]; update mixin tests to test with 0, 1, or multiple groups
2011-07-08 18:14:52 +01:00
Craig Blaszczyk
6e6b35b5c0
add unit tests which show m2m creation failing for through table
2011-07-08 17:37:20 +01:00
Fernando Zunino
8a2944acdf
Tests for CreateModelMixin (unit and integration test via ListOrCreateModelView).
2011-07-07 23:33:39 -03:00
Tom Christie
f7b7778a79
pull in markos changes, minor tweaks to yaml stuff
2011-07-01 17:44:08 +01:00
Tom Christie
8bafa01abd
Tidy up oauth imports slightly
2011-06-30 08:52:55 +01:00
Tom Christie
e5e019b0b3
Pull in David's initial oauth tests
2011-06-28 08:53:53 +01:00
Michael Fötsch
d8bec115ad
Allow .json .html .xml style urls and also allow these formats to be specified in a "?format=..." query string.
2011-06-26 16:03:36 +02:00
David Larlet
fe7e3ba3ae
Adding tests for OAuth authentication through django-oauth-plus, a dedicated example project is still missing though
2011-06-25 18:42:03 +02:00
Tom Christie
d3557bdcd0
Allow HEAD method
2011-06-25 14:53:48 +01:00
Carles Barrobés
0626b618ad
Support for HEAD method
2011-06-25 12:35:17 +02:00
Tom Christie
82de0cf50a
Decimals are a protected_type - let's leave them up to the renderer to deal with
2011-06-21 23:01:41 +01:00