summaryrefslogtreecommitdiff
path: root/tests/modeltests
AgeCommit message (Expand)Author
2009-12-22Tweaked the model_formsets test to work around a weird sorting problem betwee...Russell Keith-Magee
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-12-22Fixed #11936 -- Removed deferred models from the list returned by the app_cac...Russell Keith-Magee
2009-12-21Fixed #12409 -- Corrected some documentation typos in the docs on raw queryse...Russell Keith-Magee
2009-12-20Fixed #11863: added a `Model.objects.raw()` method for executing raw SQL quer...Jacob Kaplan-Moss
2009-12-19Fixed #12251 - QuerySet.in_bulk() should accept set/frozensetLuke Plant
2009-12-19Fixed #6961 - loaddata fails if models is a package instead of a moduleLuke Plant
2009-12-17Fixed #399: Added big integer field. Thanks to Tomáš Kopeček for persisten...Karen Tracey
2009-12-16Cleaned up some stray text in the test from r11874. Thanks to Rob Hudson for ...Russell Keith-Magee
2009-12-16Fixed #10263 -- Added a queryset argument to BaseInlineFormSet, normalizing w...Russell Keith-Magee
2009-12-14Fixed #7052 -- Added support for natural keys in serialization.Russell Keith-Magee
2009-12-12Fixed #11632: Fixed a test broken by r11826 that relied on the exact (invalid...Karen Tracey
2009-12-09Optimised use of 'in' operator on QuerySet using an explicit __contains__ met...Luke Plant
2009-11-20Fixed #12245 -- Corrected target app handling for auto-generated m2m models w...Russell Keith-Magee
2009-11-05Fixed #12168 -- Corrected the registration of m2m autocreated models when mod...Russell Keith-Magee
2009-11-03Fixed #10109 -- Removed the use of raw SQL in many-to-many fields by introduc...Russell Keith-Magee
2009-10-24Fixed a bug in r11646 - refs #11402 Luke Plant
2009-09-16Fixed #11886 -- Corrected handling of F() expressions that use parentheses. T...Russell Keith-Magee
2009-08-09Fix the expressions modeltest to work on Pythons earlier than 2.5.Karen Tracey
2009-07-24Fixed #11527 -- Added unit tests and documentation for the use of F() express...Russell Keith-Magee
2009-06-29Fixed #11392 -- Enforced a predictable result order for a couple of test case...Russell Keith-Magee
2009-06-15Fixed #11311 -- Reverted [10952], Refs #10785. Changeset [10952] caused probl...Russell Keith-Magee
2009-06-08Fixed #11194 -- Corrected loading of Proxy models from fixtures (and, by exte...Russell Keith-Magee
2009-06-08Fixed #10672 -- Altered save_base to ensure that proxy models send a post_sav...Russell Keith-Magee
2009-06-08Fixed #10785 -- Corrected a case for foreign key lookup where the related obj...Russell Keith-Magee
2009-06-06Fixed #10572 -- Corrected the operation of the defer() and only() clauses whe...Russell Keith-Magee
2009-05-28Changes to `ImageFileDescriptor` and `ImageField` to fix a few cases of setti...Gary Wilson Jr
2009-05-20Fixed #11134: signals recievers that disconnect during their processing no lo...Jacob Kaplan-Moss
2009-05-19Fixed #11116 -- Corrected the deletion of proxy objects. Thanks to Samuel Ada...Russell Keith-Magee
2009-05-19Fixed #9308 -- Corrected the updated of nullable foreign key fields when dele...Russell Keith-Magee
2009-05-17Fixed #11066 -- Corrected 15 duplicate "the"s found in docs and code comments...Karen Tracey
2009-05-11Fixed #10953, #10955: proxies of proxies now work correctly, though I still d...Jacob Kaplan-Moss
2009-05-11Fixed #10404: ImageField height_field and width_field options no longer depen...Jacob Kaplan-Moss
2009-05-08Fixed #7712, #9404, #10249, #10300: a light refactor and cleanup of file stor...Jacob Kaplan-Moss
2009-05-07Make sure that all uses of max_length in the test suite use values smaller th...Jacob Kaplan-Moss
2009-05-07Fixed #11030: fixed file uploads on non-utf8 filesystem encoding. Thanks, Hon...Jacob Kaplan-Moss
2009-05-07Fixed #9493 -- Corrected error handling of formsets that violate unique const...Russell Keith-Magee
2009-05-02Fixed #10349 -- Modified ManyToManyFields to allow initial form values to be ...Russell Keith-Magee
2009-04-30Fixed #10134 -- Added unique_for_[date|day|month|year] validation to ModelFor...Russell Keith-Magee
2009-04-18Fixed #10799: fixed the use of list_editable with model inheritance and custo...Jacob Kaplan-Moss
2009-04-13Fixed #9522 -- Modified handling of values in base serializer so that field s...Russell Keith-Magee
2009-04-11Fixed #10738 -- Fixed content type values for deferred and proxy models.Malcolm Tredinnick
2009-04-11Fixed the tests from #10455 so that they are set up correctly.Malcolm Tredinnick
2009-04-09Fixed #5563: `BooleanField(null=True)` now raises a validation warning tellin...Jacob Kaplan-Moss
2009-04-09Fixed #10647: intermediary tables between two umanaged models are no longer c...Jacob Kaplan-Moss
2009-04-05Fixed the test case from [10399] to be more robust against the order in which...Jacob Kaplan-Moss
2009-04-05Fixed #10080: `call_command` now takes option defaults into account, sparing ...Jacob Kaplan-Moss
2009-04-05Fixed #9989: fixed a subtle edge case where removing signals could break. Tha...Jacob Kaplan-Moss
2009-04-04Replace test use of assertTrue with failUnless. No matter how many times we ...Karen Tracey
2009-04-01Fixed some silly assumptions about pk's that broke the test suite under postg...Joseph Kocherhans