aboutsummaryrefslogtreecommitdiffstats
path: root/tests
AgeCommit message (Collapse)Author
2014-12-12Merge masterTom Christie
2014-12-12Clean up import orderingTom Christie
2014-12-12Python 3 test fixTom Christie
2014-12-12Client.logout() also clears any force_authenticateTom Christie
2014-12-10Optimizations play nicely with select_related, prefetch_relatedTom Christie
2014-12-09Hyperlinked PK optimization. Closes #1872.Tom Christie
2014-12-09Merge branch 'validator-pollution' of ↵Tom Christie
git://github.com/mhsparks/django-rest-framework into mhsparks-validator-pollution
2014-12-09Add allow_blank for ChoiceField #2184José Padilla
This makes a ChoiceField optional in HTML if model field has `blank=True` set.
2014-12-08Added ListSerializer.validate(). Closes #2168.Tom Christie
2014-12-08Fixed unit test for auth loginVictor Cabral
2014-12-05Test tweaksTom Christie
2014-12-05Merge pull request #2213 from BrickXu/masterTom Christie
Raise error if `fields` on serializer is not a list of strings.
2014-12-05Merge pull request #2200 from maryokhin/masterTom Christie
Clean up compat code
2014-12-05Merge pull request #2195 from tomchristie/tomchristie-escape-u2028-u2029-jsonTom Christie
Escape \u2028 and \u2029 in JSON output.
2014-12-05Add validation for fields & exclude type.BrickXu
2014-12-05Removed unused imports, pep8 fixes, typo fixesTymur Maryokhin
2014-12-04Removed custom StringIO, force_text, smart_text compatTymur Maryokhin
2014-12-04Removed custom python_2_unicode_compatible. Closes #2183Tymur Maryokhin
2014-12-03MergeTom Christie
2014-12-03MergeTom Christie
2014-12-03MergeTom Christie
2014-12-03Escape \u2028 and \u2029 in JSON output.Tom Christie
Closes #2169.
2014-12-03Added test to show potential issue with UniqueValidator being added to the ↵Mark Hughes
underlying Django model.
2014-12-03Merge pull request #2175 from BrickXu/fix_2171Tom Christie
Not allow to pass an empty actions to viewset.as_view()
2014-12-02FileUploadParser. Raising StopFutureHandlers removes any handlers not yet ↵Tom Christie
run for the active set. Closes #2109.
2014-12-02Minor tweaks for helpful message on Model.objects.create() failure.Tom Christie
2014-12-02Merge branch 'fixes/2013' of ↵Tom Christie
git://github.com/gregmuellegger/django-rest-framework into gregmuellegger-fixes/2013
2014-12-02Not allow to pass an empty actions to viewset.as_view(). Refs issue #2171BrickXu
2014-11-29Fixed typosTymur Maryokhin
2014-11-29Moved non-conflicting modelsTymur Maryokhin
2014-11-29Remove XML support from coreJosé Padilla
2014-11-29Remove JSONP support from coreJosé Padilla
2014-11-29Removed unused modelsTymur Maryokhin
2014-11-29Remove YAML support from coreJosé Padilla
2014-11-28Merge branch 'version-3.1' into oauth_as_packageJosé Padilla
Conflicts: requirements-test.txt rest_framework/compat.py tests/settings.py tox.ini
2014-11-28Use ImproperlyConfigured when model meta lookup failsTom Christie
2014-11-28Merge pull request #2086 from beck/doug/blow-up-with-bad-modelsTom Christie
Ensure _resolve_model does not return None
2014-11-28Merge pull request #2143 from linovia/bugfix/1850Tom Christie
Bugfix for #1850
2014-11-28Drop defunct testsTom Christie
2014-11-26Be nicer with __closable_objects.Xavier Ordoquy
2014-11-26Merge remote-tracking branch 'reference/master' into bugfix/1850Xavier Ordoquy
2014-11-25Fix failing YAML testsJosé Padilla
2014-11-25Fix shoddy test caseTom Christie
2014-11-19Apply defaults and requiredness to unique_together fields. Closes #2092.Tom Christie
2014-11-19Allow blank choices to render. Closes #2071.Tom Christie
2014-11-18Ensure `_resolve_model` does not return `None`Doug Beck
2014-11-15More helpful error message when default `.create` fails. Closes #2013.Gregor Müllegger
2014-11-15Merge branch 'version-3.1' of github.com:tomchristie/django-rest-framework ↵Eleni Lixourioti
into oauth_as_package Conflicts: .travis.yml
2014-11-13Model fields with .blank or .null now map to required=False. Closes #2017. ↵Tom Christie
Closes #2021.
2014-11-13Reinstate OPTIONS testsTom Christie