aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests
AgeCommit message (Collapse)Author
2013-05-18Merge branch 'master' into mjtorn-masterMarkus Törnqvist
Conflicts: rest_framework/serializers.py rest_framework/tests/serializer.py Fixed conflicts
2013-05-18draft for fields' metadata via OPTIONS - needs review and decisionNikolaus Schlemm
2013-05-18Tests proper encoding in JSONRenderer and UnicodeJSONRendererPablo Recio
2013-05-18Add min_value=0 to autogenerated Pos..IntFieldsStephan Groß
2013-05-18Merge branch 'master' of git://github.com/tomchristie/django-rest-frameworkKarol Majta
2013-05-18charset param gets now appended to response's Content-Type. Closes #807Karol Majta
2013-05-18Two test cases for html rendering of API with labelized modelMarkus Törnqvist
2013-05-18Update FieldLabelTest to use new BasicModel.verbose_nameMarkus Törnqvist
2013-05-18Change BasicModel.verbose_nameMarkus Törnqvist
Isn't it nicer to test for a text which is different from what the previous broken behavior was? Now we can really tell it works!
2013-05-18Merge pull request #861 from minddust/fix_missing_field_valuesTom Christie
Remove default values - django sets them for us - cause of #710
2013-05-18Fix missing para..Stephan Groß
2013-05-18Add newlineStephan Groß
2013-05-18Add TestCases for default field valuesStephan Groß
2013-05-18Merge pull request #854 from ryankask/issue-775Tom Christie
All relations pointing to ManyToManyFields should default to read-only
2013-05-18Merge pull request #858 from minddust/fix_710Tom Christie
Fix for #710
2013-05-18Removed unicode literalsPablo Recio
2013-05-18Merge branch 'master' into 675-empty-label-related-fieldPablo Recio
2013-05-18Merge pull request #859 from craigds/masterTom Christie
fix for #765
2013-05-18Move and rename LabelModelSerializer for further reuseMarkus Törnqvist
2013-05-18Remove unused varStephan Groß
2013-05-18Temp commit for branch change ;-)Stephan Groß
2013-05-18Clean up test case.Ryan Kaskel
2013-05-18when source='*' on a nested serializer, expand fields into outer serializer ↵Craig de Stigter
when writing. fixes #765
2013-05-18Merge latest changes from master.Ryan Kaskel
2013-05-18Fix for #710Stephan Groß
2013-05-18Merge latest changes from master.Ryan Kaskel
2013-05-18Display an empty label into related fields if it isn't requiredPablo Recio
2013-05-18ToMany fields default to read-only if targeting ManyToManyField.Ryan Kaskel
2013-05-18Merge pull request #831 from brianz/masterTom Christie
Allow nested fields to be missing
2013-05-18Moved test model into closer to the testcasePablo Recio
2013-05-18Merge branch 'master' into 725-blank-choice-dashPablo Recio
Conflicts: rest_framework/tests/fields.py
2013-05-18Adding `BLANK_CHOICE_DASH` as a choice if the model's field isn't requiredPablo Recio
2013-05-18Merge pull request #694 from craigds/masterTom Christie
fix function names and dotted lookups for use in PrimaryKeyRelatedField
2013-05-18add tests for dotted lookup in RelatedField, PrimaryKeyRelatedField, and ↵Craig de Stigter
HyperlinkedRelatedField. #694
2013-05-18ManyHyperlinkedRelatedField comes form rest_framework.relations nowMarkus Törnqvist
2013-05-18serializers.Field respects ordering on dicts if it exists. Closes #832Tom Christie
2013-05-18Merge branch 'mikee2185-master' into mjtorn-masterMarkus Törnqvist
Conflicts: rest_framework/fields.py rest_framework/serializers.py rest_framework/tests/models.py rest_framework/tests/serializer.py Fixed all the conflicts.
2013-05-18add tests for related field source for HyperlinkedRelatedField. #694Craig de Stigter
2013-05-18add tests for related field source for RelatedField and ↵Craig de Stigter
PrimaryKeyRelatedField. #694
2013-05-18Forms in Broseable API support dynamic serializers based on request methodTom Christie
2013-05-17Fix PendingDeprecation warnings in testsTom Christie
2013-05-16HyperlinkedIdentityField uses `lookup_field` kwarg.Andy Freeland
According to the [Serializers API Guide][1], `HyperlinkedIdentityField` takes `lookup_field` as a kwarg like the other related fields and the generic views. However, this was not actually implemented. [1]: http://django-rest-framework.org/api-guide/serializers.html#hyperlinkedmodelserializer
2013-05-15Test and fix which closes #652.Tom Christie
2013-05-14Base automatic filterset model on the queryset model. Fixes #834.Tom Christie
2013-05-14Fix filter test renamingTom Christie
2013-05-14Merge branch 'master' of https://github.com/avinash240/django-rest-frameworkTom Christie
2013-05-14Added OrderingFilterTom Christie
2013-05-14Added OrderingFilterTom Christie
2013-05-14Rename filter testsTom Christie
2013-05-13Allow for missing non-required nested objects.Brian Zambrano
Serializer fields which are themselves serializers should not be required. Specifically, if a nested object is set to "required=False", it should be possible to serialize the main object and have the sub-object set to None/null.