| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-02 | Support for running the test suite with py.test | Andreas Pelme | |
| * Get rid of runtests.py * Moved test code from rest_framework/tests and rest_framework/runtests to tests * Invoke py.test from setup.py * Invoke py.test from Travis * Invoke py.test from tox * Changed setUpClass to be just plain setUp in test_permissions.py * Updated contribution guideline to show how to invoke py.test | |||
| 2013-10-18 | add test case around ensuring proper field inference for boolean model field ↵ | dpetzel | |
| types | |||
| 2013-07-04 | Remove 'Hold down "Control" ...' message from help_text | Andy Freeland | |
| When getting the help_text from a field where `many=True`, Django appends 'Hold down "Control", or "Command" on a Mac, to select more than one.' to the help_text. This makes some sense in Django's ModelForms, but no sense in the API. | |||
| 2013-05-31 | Cleaning up imports and whitespace | Tom Christie | |
| 2013-05-18 | Change BasicModel.verbose_name | Markus 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-18 | Move and rename LabelModelSerializer for further reuse | Markus Törnqvist | |
| 2013-05-18 | Merge branch 'mikee2185-master' into mjtorn-master | Markus 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-10 | Move models into test modules, out of models module | Tom Christie | |
| 2013-02-04 | Cleanup imports | Tom Christie | |
| Mostly adding `from __future__ import unicode_literals` everywhere. | |||
| 2013-01-25 | Cleaning up GFK test module. Refs #607. | Tom Christie | |
| 2013-01-07 | Create separate *NullableOneToOneTests TestCase | Mark Aaron Shirley | |
| 2013-01-04 | Handle ObjectDoesNotExist exceptions when serializing null reverse one-to-one | Mark Aaron Shirley | |
| 2013-01-03 | Merge pull request #541 from yprez/default_and_partial_serializers2 | Tom Christie | |
| Fix "default" values and partial serializers. Fixes #532. | |||
| 2013-01-03 | Move relation tests models into models.py | Mark Aaron Shirley | |
| 2012-12-25 | Regression test for #532 - values overriden by "default" setting | Yuri Prezument | |
| 2012-12-21 | Merge remote-tracking branch 'tom/master' | Michal Dvorak (cen38289) | |
| Conflicts: rest_framework/tests/serializer.py | |||
| 2012-12-19 | urls, patterns, include imports move to compat to support incoming 1.3 thru ↵ | Tom Christie | |
| 1.6 import compatability | |||
| 2012-12-19 | Merge pull request #510 from joual/master | Tom Christie | |
| Fixes #509 | |||
| 2012-12-17 | Merge remote-tracking branch 'tom/master' | Michal Dvorak (cen38289) | |
| Conflicts: rest_framework/serializers.py rest_framework/tests/serializer.py | |||
| 2012-12-15 | Added test for "positive_integer in choices tuple does not get parsed if not ↵ | Joel Marcotte | |
| string". Signed-off-by: Joel Marcotte <skaner@gmail.com> | |||
| 2012-12-15 | Fix model validation exclusions. Fixes #500. Fixes #506. | Tom Christie | |
| 2012-12-06 | Merge branch 'master' of ↵ | Marko Tibold | |
| https://github.com/tomchristie/django-rest-framework into #431 | |||
| 2012-12-03 | #467 Added unit test | Michal Dvorak | |
| 2012-11-30 | add traverse_related feature + tests (fixes issue#461) | Pavel Savchenko | |
| 2012-11-22 | Added _post_clean() behaviour by adding a .perform_model_validation() method. | Marko Tibold | |
| Fixed some tests that were failing due to extra strict validation. | |||
| 2012-11-21 | added missing line | Stephan Groß | |
| 2012-11-21 | Merge remote-tracking branch 'upstream/master' into regex_field | Stephan Groß | |
| Conflicts: docs/topics/release-notes.md | |||
| 2012-11-21 | added tests | Stephan Groß | |
| 2012-11-20 | Fix related serializers with source argument that resolves to a callable | Jamie Matthews | |
| 2012-11-18 | Add support for min_length / max_length keywords | Jacob Magnusson | |
| on basic ModelFields | |||
| 2012-11-10 | Reproduces #380 | Marko Tibold | |
| 2012-11-06 | Merge branch 'master' into restframework2-filter | Ben Konrath | |
| 2012-11-05 | added testcase for custom slug field in hyperlinkedrelatedfield | Stephan Groß | |
| 2012-11-03 | Added test that makes sure that fields with | Jacob Magnusson | |
| dictionaries as data are returned as expected and not turned into string representations | |||
| 2012-11-01 | Merge branch 'master' into restframework2-filter | Ben Konrath | |
| 2012-10-30 | Merge fixes for 'blank=True' fields. Fixes #324, Fixes #325 | Tom Christie | |
| Thanks to @Roarster. | |||
| 2012-10-30 | Adding failing tests that show null=True model fields are won't validate if ↵ | Marko Tibold | |
| their value is omitted. | |||
| 2012-10-28 | Added wo tests. One for PUTing on a non-existing id-based url. And another ↵ | Marko Tibold | |
| for PUTing on a non-existing slug-based url. Fix doctoring for 'test_put_cannot_set_id'. | |||
| 2012-10-27 | Push tests into a seperate app namespace 'rest_framework.test' | Tom Christie | |
| Prevents tests from running by default when rest_framework is installed as 3rd party app. Fixes #316, #185 | |||
| 2012-10-26 | Fix failing 'default' on ModelSerializer | Tom Christie | |
| 2012-10-22 | #314 Fix for manytomany field being required in the payload even though the ↵ | Ian Strachan | |
| field is specified as readonly in the serializer | |||
| 2012-10-22 | Fix serialization of reverse relationships | Jamie Matthews | |
| 2012-10-17 | Make default field check safe for boolean values whereby 'False' may be an ↵ | Rob Dobson | |
| acceptable default value | |||
| 2012-10-11 | First attempt at adding filter support. | Ben Konrath | |
| The filter support uses django-filter to work its magic. | |||
| 2012-10-08 | Fix #285 | Tom Christie | |
| 2012-10-04 | Fix for field to make it easier to access field relationships | Tom Christie | |
| 2012-10-04 | Tests for default arguments on fields | Tom Christie | |
| 2012-10-04 | Abstract out the app_label on test models | Tom Christie | |
| 2012-10-04 | Abstract out the app_label on test models | Tom Christie | |
| 2012-10-03 | Many2Many test | Tom Christie | |
