aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_fields.py
AgeCommit message (Collapse)Author
2015-02-06Add trim_whitespace to CharField #2517José Padilla
If set to `True` then leading and trailing whitespace is trimmed. Defaults to `True`.
2015-01-30Merge masterTom Christie
2015-01-23Added DictField and support for HStoreField.Tom Christie
2015-01-23Added UUIDField.Tom Christie
2015-01-09Merge pull request #2373 from jakul/document-translations-3.1Tom Christie
Document how to translate DRF error messages (version 3.1)
2015-01-08update tests to expect new error messagesCraig Blaszczyk
2015-01-07prefer single quotes in source and double quotes in user visible strings; ↵Craig Blaszczyk
add some missing full stops to user visible strings
2015-01-02update expected error messages in testsCraig Blaszczyk
2014-12-20Better behaviour with null and '' for blank HTML fields.Tom Christie
2014-12-18Drop print statements in testsTom Christie
2014-12-18Fixes for behavior with empty HTML fields.Tom Christie
2014-12-17Fix empty HTML values when a default is provided.Tom Christie
2014-12-15Use unicode internally everywhere for 'repr'Tom Christie
2014-12-09Add allow_blank for ChoiceField #2184José Padilla
This makes a ChoiceField optional in HTML if model field has `blank=True` set.
2014-11-19Allow blank choices to render. Closes #2071.Tom Christie
2014-11-06Support for bulk create. Closes #1965.Tom Christie
2014-10-31Lazy loading of fields and validators. Closes #1963.Tom Christie
2014-10-28unique_for_date/unique_for_month/unique_for_yearTom Christie
2014-10-17Use serializers.ValidationErrorTom Christie
2014-10-10exceptions.ValidationFailed, not Django's ValidationErrorTom Christie
2014-10-08Support empty file fieldsTom Christie
2014-09-29Absolute URLs for file fieldsTom Christie
2014-09-26FileField and ImageFieldTom Christie
2014-09-26Drop erronous print statementsTom Christie
2014-09-26Added ListFieldTom Christie
2014-09-26request.data attributeTom Christie
2014-09-25Refuse to downcast from datetime to date or timeTom Christie
2014-09-25Check for redundant on SerializerMethodFieldTom Christie
2014-09-25Ensure proper sorting of 'choices' attribute on ChoiceFieldTom Christie
2014-09-24Enforce field_name != sourceTom Christie
2014-09-23NullBooleanFieldTom Christie
2014-09-23Tests for field choicesTom Christie
2014-09-22allow_blank, allow_nullTom Christie
2014-09-22Tests & tweaks for ChoiceFieldTom Christie
2014-09-22Tests and tweaks for choice fieldsTom Christie
2014-09-22More compat fixesTom Christie
2014-09-22Support format=None for date/time fieldsTom Christie
2014-09-22Tweaks to DecimalFieldTom Christie
2014-09-22Fix compat issuesTom Christie
2014-09-22Tests and tweaks for text fieldsTom Christie
2014-09-22Field tests and associated cleanupTom Christie
2014-09-11Merge masterTom Christie
2014-09-05Delete useless assertPiotr Jakimiak
2014-09-05Use Serializer instead of ModelSerializerPiotr Jakimiak
2014-09-05Check object in testsPiotr Jakimiak
2014-09-05Fix returning None when allow_none is True in CharFieldPiotr Jakimiak
2014-09-02Getting tests passingTom Christie
2014-08-19Code linting and added runtests.pyTom Christie
2014-08-19Merge masterTom Christie
2014-06-23Merge remote-tracking branch 'origin/master' into 2.4.0Xavier Ordoquy
Conflicts: .travis.yml docs/api-guide/viewsets.md rest_framework/serializers.py rest_framework/throttling.py tests/test_generics.py tests/test_serializers.py tox.ini