aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests/serializer.py
AgeCommit message (Collapse)Author
2013-05-18Merge pull request #865 from ryankask/issue-747-lazy-strings-serializedTom Christie
Issue 747 lazy strings serialized
2013-05-18Merge latest changes from master.Ryan Kaskel
2013-05-18Add min_value=0 to autogenerated Pos..IntFieldsStephan Groß
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-18Remove unused varStephan 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-18Display an empty label into related fields if it isn't requiredPablo Recio
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-18add tests for related field source for RelatedField and ↵Craig de Stigter
PrimaryKeyRelatedField. #694
2013-05-15Test and fix which closes #652.Tom 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.
2013-04-30Merge masterTom Christie
2013-04-292.2's PendingDeprecationWarnings now become DeprecationWarnings. 2.3's ↵Tom Christie
PendingDeprecationWarnings added.
2013-04-27Changed DepthTest to have depth=2JC
2013-04-10First pass on automatically including reverse relationshipTom Christie
2013-03-23Added tests for issue 747 in serializer.pyMatteo Suppo
2013-03-22Merge pull request #744 from tomchristie/basic-bulk-editTom Christie
Basic bulk create and bulk update
2013-03-22Test moved out of serializer.py into serializer_bulk_updateTom Christie
2013-03-21Default date/time fields now return python date/time objects again by defaultTom Christie
2013-03-19Basic bulk create and bulk updateTom Christie
2013-03-08Py3k fixes.Tom Christie
2013-03-08Tweak implementation, and use FormSet style errorsTom Christie
2013-03-08Errors during deserializing lists now return a list of tuples withIan Dash
index of bad item in data plus usual errors dict
2013-03-01Add drf settings + output format + testcasesStephan Groß
2013-02-27`assertEquals` -> `assertEqual`Tom Christie
2013-02-26Changed AttributeError to AssertionErrorDanilo Bargen
2013-02-25Show class name in exception messageDanilo Bargen
2013-02-25Improved exception message for missing serializer model meta optionDanilo Bargen
2013-02-22Fix and test for #645Tom Christie
Yuck, pickle is weird. Closes #645.
2013-02-22FormattingTom Christie
2013-02-21Add assertion in testYuri Prezument
2013-02-21Failing test case for #669Yuri Prezument
2013-02-12Test for None in 'dotted.source' component.Tom Christie
Closes #643.
2013-02-12Unicode literal fixTom Christie
2013-02-12Test for #637.Tom Christie
2013-02-12Remove deprecated APIs from testsTom Christie
2013-02-11Merge pull request #651 from fernandogrd/masterTom Christie
DictWithMetadata.__getstate__ was never called (Fix for 645)
2013-02-11Make use o issubclass instead of isinstance (fix issue #645)Fernando Rocha
Because __mro__ is a list of classes and not instances. DictWithMetadata.__getstate__ was never called Signed-off-by: Fernando Rocha <fernandogrd@gmail.com>
2013-02-07Allow serializers to handle dicts as well as objects. Fixes #447.Tom Christie
2013-02-07Use new style of `required=<bool>` not `blank` or `null`Tom Christie
2013-02-07Use new many=True relations style.Tom Christie