Tom Christie
|
773a92eab3
|
Move models into test modules, out of models module
|
2013-05-10 21:57:05 +01:00 |
|
Tom Christie
|
b052c92ac3
|
Cleanup imports
Mostly adding `from __future__ import unicode_literals` everywhere.
|
2013-02-04 20:55:35 +00:00 |
|
Tom Christie
|
b73d7e9bb4
|
Cleaning up GFK test module. Refs #607.
|
2013-01-25 13:58:19 +00:00 |
|
Mark Aaron Shirley
|
a897eb5480
|
Create separate *NullableOneToOneTests TestCase
|
2013-01-07 16:27:31 -08:00 |
|
Mark Aaron Shirley
|
213981cef3
|
Handle ObjectDoesNotExist exceptions when serializing null reverse one-to-one
|
2013-01-04 21:11:03 +01:00 |
|
Tom Christie
|
6da21fa796
|
Merge pull request #541 from yprez/default_and_partial_serializers2
Fix "default" values and partial serializers. Fixes #532.
|
2013-01-03 14:05:36 -08:00 |
|
Mark Aaron Shirley
|
8fd1f09dad
|
Move relation tests models into models.py
|
2013-01-03 10:23:13 +01:00 |
|
Yuri Prezument
|
36e1987f59
|
Regression test for #532 - values overriden by "default" setting
|
2012-12-25 18:50:00 +02:00 |
|
Tom Christie
|
a493c83248
|
urls, patterns, include imports move to compat to support incoming 1.3 thru 1.6 import compatability
|
2012-12-19 23:12:27 +00:00 |
|
Tom Christie
|
46b313315a
|
Merge pull request #510 from joual/master
Fixes #509
|
2012-12-19 14:39:11 -08:00 |
|
Joel Marcotte
|
01e06bcdf8
|
Added test for "positive_integer in choices tuple does not get parsed if not string".
Signed-off-by: Joel Marcotte <skaner@gmail.com>
|
2012-12-15 16:33:08 -05:00 |
|
Tom Christie
|
35f72cecb1
|
Fix model validation exclusions. Fixes #500. Fixes #506.
|
2012-12-15 20:40:41 +00:00 |
|
Marko Tibold
|
c65f22e0e4
|
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework into #431
|
2012-12-06 23:47:47 +01:00 |
|
Pavel Savchenko
|
e311b763e1
|
add traverse_related feature + tests (fixes issue#461)
|
2012-11-30 01:34:46 +02:00 |
|
Marko Tibold
|
ca5b99486d
|
Added _post_clean() behaviour by adding a .perform_model_validation() method.
Fixed some tests that were failing due to extra strict validation.
|
2012-11-22 22:36:37 +01:00 |
|
Stephan Groß
|
03100168ff
|
added missing line
|
2012-11-21 11:57:00 +01:00 |
|
Stephan Groß
|
6ba4df8a27
|
Merge remote-tracking branch 'upstream/master' into regex_field
Conflicts:
docs/topics/release-notes.md
|
2012-11-21 11:56:34 +01:00 |
|
Stephan Groß
|
ed713d0354
|
added tests
|
2012-11-21 11:07:08 +01:00 |
|
Jamie Matthews
|
68c397371c
|
Fix related serializers with source argument that resolves to a callable
|
2012-11-20 09:41:36 +00:00 |
|
Jacob Magnusson
|
d67ee708e5
|
Add support for min_length / max_length keywords
on basic ModelFields
|
2012-11-18 18:14:21 +01:00 |
|
Marko Tibold
|
df689a7442
|
Reproduces #380
|
2012-11-10 12:00:20 +01:00 |
|
Ben Konrath
|
09f39bd23b
|
Merge branch 'master' into restframework2-filter
|
2012-11-06 03:22:25 +01:00 |
|
Stephan Groß
|
03095f607a
|
added testcase for custom slug field in hyperlinkedrelatedfield
|
2012-11-05 16:37:37 +01:00 |
|
Jacob Magnusson
|
1b49615c00
|
Added test that makes sure that fields with
dictionaries as data are returned as expected and
not turned into string representations
|
2012-11-03 00:32:02 +01:00 |
|
Ben Konrath
|
9c82f9717e
|
Merge branch 'master' into restframework2-filter
|
2012-11-01 14:06:56 +01:00 |
|
Tom Christie
|
0047a46020
|
Merge fixes for 'blank=True' fields. Fixes #324, Fixes #325
Thanks to @Roarster.
|
2012-10-30 11:03:03 +00:00 |
|
Marko Tibold
|
6ccbdd10ad
|
Adding failing tests that show null=True model fields are won't validate if their value is omitted.
|
2012-10-30 00:03:24 +01:00 |
|
Marko Tibold
|
bc99142c7d
|
Added wo tests. One for PUTing on a non-existing id-based url. And another for PUTing on a non-existing slug-based url.
Fix doctoring for 'test_put_cannot_set_id'.
|
2012-10-28 19:35:50 +01:00 |
|
Tom Christie
|
b9e576f16e
|
Push tests into a seperate app namespace 'rest_framework.test'
Prevents tests from running by default when rest_framework is installed
as 3rd party app.
Fixes #316, #185
|
2012-10-27 18:44:23 +01:00 |
|
Tom Christie
|
67f1265e49
|
Fix failing 'default' on ModelSerializer
|
2012-10-26 13:20:30 +01:00 |
|
Ian Strachan
|
c7a0d52fd7
|
#314 Fix for manytomany field being required in the payload even though the field is specified as readonly in the serializer
|
2012-10-22 22:24:26 +01:00 |
|
Jamie Matthews
|
45d4622f09
|
Fix serialization of reverse relationships
|
2012-10-22 15:12:25 +01:00 |
|
Rob Dobson
|
38673c35d4
|
Make default field check safe for boolean values whereby 'False' may be an acceptable default value
|
2012-10-17 19:12:34 +01:00 |
|
Ben Konrath
|
1e9ece0f93
|
First attempt at adding filter support.
The filter support uses django-filter to work its magic.
|
2012-10-11 12:01:07 +02:00 |
|
Tom Christie
|
52ba2e3333
|
Fix #285
|
2012-10-08 12:52:56 +01:00 |
|
Tom Christie
|
693892ed01
|
Fix for field to make it easier to access field relationships
|
2012-10-04 22:07:24 +01:00 |
|
Tom Christie
|
d79e18963e
|
Tests for default arguments on fields
|
2012-10-04 09:29:12 +01:00 |
|
Tom Christie
|
f8edfa2675
|
Abstract out the app_label on test models
|
2012-10-04 09:19:10 +01:00 |
|
Tom Christie
|
bcd2caf559
|
Abstract out the app_label on test models
|
2012-10-04 09:18:46 +01:00 |
|
Tom Christie
|
36b58d0c78
|
Many2Many test
|
2012-10-03 10:51:38 +01:00 |
|
Tom Christie
|
e003cc91b6
|
Get test-only models properly working
|
2012-09-28 14:28:50 +01:00 |
|
Tom Christie
|
4b691c4027
|
Change package name: djangorestframework -> rest_framework
|
2012-09-20 13:06:27 +01:00 |
|