summaryrefslogtreecommitdiff
path: root/tests/modeltests
AgeCommit message (Expand)Author
2007-07-22Fixed #4373 -- Modified the get_object_or_404/get_list_or_404 shortcuts to al...Gary Wilson Jr
2007-07-21Fixed #4402 -- Modified test client to allow multi-valued inputs on GET reque...Russell Keith-Magee
2007-07-20Fixed #3782 -- Added support for the suite() method recommended by the Python...Russell Keith-Magee
2007-07-14Fixed #4870 -- Removed unneeded import and fixed a docstring in an example.Malcolm Tredinnick
2007-07-12Fixed #4526 -- Modified the test Client login method to fail when a user is i...Russell Keith-Magee
2007-07-10Fixed #4804 -- Fixed a problem when validating choice lists with non-ASCIIMalcolm Tredinnick
2007-07-05Added a test that shows the problem in #4470. This fails only for the mysql_oldMalcolm Tredinnick
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-07-01Made the reg-exp lookup tests more robust. they now pass for all databaseMalcolm Tredinnick
2007-06-27Fixed #1465: added support for regex lookups. Thanks, Tom Tobin.Jacob Kaplan-Moss
2007-06-01Fixed #3466 -- Fixed problem with specifyin a 'fields' argument to a JSON ser...Russell Keith-Magee
2007-05-31Fixed #3050: you can now use extra(select=...) with values(). Thanks, Honza KralJacob Kaplan-Moss
2007-05-21Fixed #2365, #3324 -- Renamed FloatField to DecimalField and changed the codeMalcolm Tredinnick
2007-05-14Changed the fix from [5231] so that the backwards-incompatibility is made moreMalcolm Tredinnick
2007-05-12Added docs for form_for_model and form_for_instance, and added a fields argum...Russell Keith-Magee
2007-05-10Improved error reporting for assertions where there are no form errors, or a ...Russell Keith-Magee
2007-05-10Added configurable arguments to assertRedirects and assertContains to allow f...Russell Keith-Magee
2007-05-08Added redirection for email services during test conditions.Russell Keith-Magee
2007-05-08Moved generic relations into django.contrib.contenttypes, since it depends onMalcolm Tredinnick
2007-05-07Added assertFormError, assertTemplateUsed and assertTemplateNotUsed for use d...Russell Keith-Magee
2007-05-06Fixed comma splice in error message introduced in [5133]Adrian Holovaty
2007-05-05Backwards incompatible change: Changed the way test.Client.login operates. Ol...Russell Keith-Magee
2007-05-05Added a default test Client to TestCase, and added some assertions for some c...Russell Keith-Magee
2007-05-01Fixed #4130 -- Added more self-explanatory error message when a typo is made inMalcolm Tredinnick
2007-04-28Fixed #3268 -- Changed default model formfields to use a select widget when theMalcolm Tredinnick
2007-04-09Fixed #3929 -- Newforms Textarea widget now always includes 'rows' and 'cols'...Adrian Holovaty
2007-03-31Fixed #2363 -- Improved base class checking in ModelBase metaclass. Thanks toMalcolm Tredinnick
2007-03-23Removed formatting from the select_related test title.Jacob Kaplan-Moss
2007-03-23Renumbered all the doctest examples so that they are ordered correctly on the...Jacob Kaplan-Moss
2007-03-22Fixes #3212 -- Added code to test client to allow posting of multi-form value...Russell Keith-Magee
2007-03-20Fixed tests that broke after [4756].Malcolm Tredinnick
2007-03-13Modified expected output of one fixture doctest to make it non unix-specific.Russell Keith-Magee
2007-03-13Modified the internal dumpdata implementation to return the dumped data, rath...Russell Keith-Magee
2007-03-01Fixes #2333 -- Added test fixtures framework.Russell Keith-Magee
2007-02-28Added a "depth" argument to select_related() to control how many "levels" of ...Jacob Kaplan-Moss
2007-02-26Fixed a few Python2.3-related bugs in the tests (see #3396). A few more left,...Jacob Kaplan-Moss
2007-02-26Fixed #3390: the serializer can now contain forward references. Thanks, Russ.Jacob Kaplan-Moss
2007-02-26Fixed #3172: Model.validate() no longer raises TypeErrors on empty Date*Field...Jacob Kaplan-Moss
2007-02-21Changed database PhoneNumberField to use USPhoneNumberField as its newforms f...Adrian Holovaty
2007-02-21Fixed #3534 -- newforms ModelChoiceField and ModelMultipleChoiceField no long...Adrian Holovaty
2007-02-20Fixed #3247 -- newforms form_for_model() and form_for_instance() no longer cr...Adrian Holovaty
2007-02-20Fixed #3257 -- Added newforms ModelChoiceField and ModelMultipleChoiceField, ...Adrian Holovaty
2007-02-17Fixed #3160 -- Added the ability to control the content type in a test client...Russell Keith-Magee
2007-02-14Changed __year lookup to use a BETWEEN SQL statement instead of comparing the...Adrian Holovaty
2007-02-12#fixed #2256 -- Made count() interact with slicing on QuerySets. Patch fromMalcolm Tredinnick
2007-02-11Fixed #3162 -- Added coded to catch and rethrow exceptions that are thrown by...Russell Keith-Magee
2007-02-10Fixed #3463 -- EmptyQuerySet's iterator() now returns a generator. Thanks, Ga...Adrian Holovaty
2007-02-10Fixed #2348 -- Improved error reporting when query filter arguments areMalcolm Tredinnick
2007-02-09Added a ``session`` attribute to the test Client, to make it easier to test i...Russell Keith-Magee
2007-01-29Fixed Python 2.4-ism in modeltests/test_client. Thanks for the find, Robert ...Jacob Kaplan-Moss