summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2013-04-19Fix != operations on lazy objects.Alex Gaynor
2013-04-19Fixed #20276 -- Implemented __bool__ for MergeDictAnton Baklanov
MergeDict evaluates now to False if all contained dicts are empty. Thanks til for the report and the initial patch.
2013-04-16Refs #14567 -- Fixed failing test that wasn't being run.Carl Meyer
2013-04-14Fixed #18231 -- Made JavaScript i18n not pollute global JS namespace.Matthew Tretter
Also, use Django templating for the dynamic generated JS code and use more idiomatic coding techniques. Thanks Matthew Tretter for the report and the patch.
2013-04-13Fixed #17840 -- Generalized named placeholders in form error messagesClaude Paroz
Also fixed plural messages for DecimalField.
2013-04-13Fixed #4592: Made CheckboxSelectMultiple more like RadioSelectBaptiste Mispelon
I refactored RadioSelect and CheckboxSelectMultiple to make them inherit from a base class, allowing them to share the behavior of being able to iterate over their subwidgets. Thanks to Matt McClanahan for the initial patch and to Claude Paroz for the review.
2013-04-13Fixed #4117: Apply id attribute to the outer <ul> of RadioSelectBaptiste Mispelon
2013-04-13Used a Python 3 compatible StringIO in test_utilsClaude Paroz
2013-04-13Fixed #19874: Apply id attribute to the outer <ul> of CheckboxSelectMultipleBaptiste Mispelon
2013-04-13Updated a renamed test fileClaude Paroz
2013-04-12Fixed template_tests so discovery doesn't directly find tests that require ↵Preston Timmons
setuptools.
2013-04-12Modified view_tests for unittest2 discovery.Preston Timmons
2013-04-12Modified validation to work with unittest2 discovery.Preston Timmons
2013-04-12Modified utils_tests for unittest2 discovery.Preston Timmons
2013-04-12Modified template_tests for unittest2 discovery.Preston Timmons
2013-04-12Modified model_fields for unittest2 discovery.Preston Timmons
2013-04-12Modified generic_views for unittest2 discovery.Preston Timmons
2013-04-12Modified comment_tests for unittest2 discovery.Preston Timmons
2013-04-12Modified test_client_override to work with unittest2 discovery.Preston Timmons
2013-04-12Modified test_utils to work with unittest2 discovery.Preston Timmons
2013-04-12Modified forms_tests to work with unittest2 discovery.Preston Timmons
2013-04-12Fixed #20237 (again) Allowed binary parameter to assertContainsClaude Paroz
2013-04-12Fixed #20211: Document backwards-incompatible change in BoundField.label_tagBaptiste Mispelon
Also cleaned up label escaping and consolidated the test suite regarding label_tag.
2013-04-11Fixed #20237 -- Reenabled assertContains with binary parameterClaude Paroz
Thanks Baptiste Mispelon for the review.
2013-04-10Fixed #20231 -- Don't use allow_lazy on smart_splitBaptiste Mispelon
2013-04-10Made usage of assertTemplateUsed in admin_views testsClaude Paroz
Thanks Baptiste Mispelon for the suggestion.
2013-04-08Fix admin_views tests after commit 3be368c73e.Baptiste Mispelon
2013-04-08Fixed #14019 -- Initialize `SQLInsertCompiler.return_id` attribute.Tobias McNulty
2013-04-07Fix #15126: Better error message when passing invalid options to ModelForm.Meta.Baptiste Mispelon
2013-04-05Fixed #20207 -- Handle ManyToManyField with a unicode name correctly.Simon Charette
2013-04-03Fixed #20038 -- Better error message for host validation.Baptiste Mispelon
2013-04-02Move last remaining tests out of models.py files; prep for test discovery.Preston Timmons
2013-04-01Relaxed time frame check in test_strip_tagsClaude Paroz
2013-04-01Fixed #20169 -- Ensured that the WSGI request's path is correctly based on ↵Julien Phalip
the `SCRIPT_NAME` environment parameter or the `FORCE_SCRIPT_NAME` setting, regardless of whether or not those have a trailing slash. Thanks to bmispelon for the review.
2013-04-01Fixed #16737 -- Support non-ascii column names in inspectdbClaude Paroz
Thanks moof at metamoof.net for the report.
2013-04-01Imported unittest from django.utils in util_testsClaude Paroz
Without this, the 'new' assertion methods are not present with Python 2.6.
2013-04-01Fixed #5014 -- Guessed max_digits and decimal_places for SQLiteClaude Paroz
Decimal is treated as float on SQLite, hence inspectdb can only guess max_digits and decimal_places arguments.
2013-04-01Fixed getting max_digits for MySQL decimal fieldsClaude Paroz
Refs #5014.
2013-04-01Added more tests for strip_tags utilityClaude Paroz
Refs #19237.
2013-04-01Fixed #20172 -- Ensured urlize supports IPv4/IPv6 addressesClaude Paroz
Thanks Marc Aymerich for the report and the initial patch.
2013-03-31Fixed #20167 -- Preserve the traceback of `ImportError`s in `import_by_path`.Joe Friedl
Thanks @carljm for the review.
2013-03-31Fixed #19220 -- Prevented decimals to be displayed in scientific notationClaude Paroz
Thanks nebstrebor for the report and antofik for the patch.
2013-03-30Fixed #20130 -- Regression in {% cache %} template tag.Baptiste Mispelon
2013-03-30Fixed #19998 -- Fixed --ignorenonexistent support for XML based fixtures.Christoph Sieghart
2013-03-29Fix #20158: invalid code in queryset_pickle test models.Baptiste Mispelon
2013-03-28Fixed #19954 -- Fixed MySQL _last_executed decodingClaude Paroz
Queries can contain binary data undecodable with utf-8. In this case, using the 'replace' errors mode when decoding seems like an acceptable representation of the query. Thanks Marcel Ryser for the report.
2013-03-27Correctly restore warning capture after logging tests.Jacob Kaplan-Moss
This is a fix to the wrong behavior that 15c3906eeb introduced.
2013-03-27Fixed logging-related test failure introduced by e79b857.Jacob Kaplan-Moss
2013-03-27Merge remote-tracking branch 'ptone/18985-fix'Jacob Kaplan-Moss
2013-03-26Added regression test for custom SQL containing percentsClaude Paroz
Refs #3485.