aboutsummaryrefslogtreecommitdiffstats
path: root/tests/tests.py
AgeCommit message (Collapse)Author
2013-11-01Split tests across several modules.Aymeric Augustin
Fix #426.
2013-11-01Removed redundant settings manipulations in tests.Aymeric Augustin
2013-10-27Fix a few tests that broke after 982f341.Aymeric Augustin
2013-10-26Eliminate almost all flake8 messages.Aymeric Augustin
2013-10-26Remove unused imports.Aymeric Augustin
2013-10-26Don't crash on non ascii bytestrings in db params.Aymeric Augustin
Thanks Karen Tracey for the report. Fix #422.
2013-10-26Fix tests under Django 1.6.Aymeric Augustin
Fix #425.
2013-10-26Improve tests for the debugsqlshell command.Aymeric Augustin
Fix #424.
2013-10-22Fix #420 -- Regression in 729d75d.Aymeric Augustin
Thanks Jacob Hesch for the report.
2013-10-19Merge pull request #419 from aaugustin/drop-testAymeric Augustin
Stop looking at settings.TEST. Fix #270.
2013-10-18Add test for issue #348.Aymeric Augustin
2013-10-18Stop looking at settings.TEST. Fix #270.Aymeric Augustin
2013-10-18Make show_toolbar available for easier customization.Aymeric Augustin
Thanks Ned Batchelder for the suggestion. Fix #324.
2013-10-18Test that non-string view arguments are supported.Aymeric Augustin
Close #43.
2013-10-18Fix crash with objects having a non-ASCII repr in context.Aymeric Augustin
2013-10-18Oops, remove debug.Aymeric Augustin
2013-10-18Ensure the toolbar only outputs valid XML.Aymeric Augustin
This allows using it in websites served with the application/xml+xhtml mime type. Fix #221.
2013-10-18Small test refactoring.Aymeric Augustin
2013-10-18#151 -- Logging panel fails on invalid string representationsBouke Haarsma
2013-10-18Test that non-ASCII data in sessions works.Aymeric Augustin
Fix #67.
2013-10-17Support non-ASCII queries in the SQL panel.Aymeric Augustin
Fix #28.
2013-10-17Support DEFAULT_CHARSET != 'utf-8'. Fix #15.Aymeric Augustin
2013-10-17Take advantage of TestCase.settings.Aymeric Augustin
It's available in Django >= 1.4.
2013-10-17Remove dead code.Aymeric Augustin
These features were still tested, but they weren't used anywhere.
2013-10-17Update usage of the threading module.Aymeric Augustin
2013-10-17Replace assertEquals by assertEqual.Aymeric Augustin
2013-10-17Stopped using dict.iter*.Aymeric Augustin
Since performance isn't a primary concern, the non-iterable versions will do just fine on Python 2.
2013-10-17Update imports for renamed modules.Aymeric Augustin
2013-10-17Replace basestring by six.string_types.Aymeric Augustin
2013-10-17Enable unicode_literals in all non-empty modules.Aymeric Augustin
2013-10-17Remove compatibility code for unsupported version of Django.Aymeric Augustin
2013-10-14Fix a failing test on Django 1.5.Aymeric Augustin
It was failing since I added a default context with a few constants.
2013-03-02Merge pull request #342 from davidwtbuxton/masterJannis Leidel
Python 2.5 compatibility, fixes #261
2012-12-11Python 2.5 compatibility #261David Buxton
2012-08-27Tests for issue_230Anssi Kääriäinen
2012-08-20remove references to debug_media now using staticfilesThomas Grainger
2012-05-13Fixed a few cosmetic issues in the tests.Jannis Leidel
2012-05-13Added support for class methods.Jannis Leidel
2012-05-13Remove of Django < 1.3 specific test.Jannis Leidel
2012-05-13Got rid of the dependency on Dingus.Jannis Leidel
2012-04-07Added resolved URL name to the Request var panel. Closes #214.Jannis Leidel
2012-03-14Don't explode if a project uses tuple'd urlpatternsDan Fairs
2011-10-07Make stacktraces configurableColin Howe
2011-09-26Merge branch 'issue-duplicated-queries' of ↵David Cramer
https://github.com/thinred/django-debug-toolbar into thinred-issue-duplicated-queries
2011-09-26Better substitutions for template context variables triggering SQL queriesMikhail Korobov
2011-09-26Issue 187: queries are captured and not executed when template panel is ↵Tomasz Buchert
rendered.
2011-09-12Added response processing into the tests, since that is now required to ↵bkonkle
generate stats
2011-09-09Set INTERNAL_IPS and DEBUG on the middleware testbkonkle
2011-08-25Update urlpattern tests to reflect new behaviorDavid Cramer
2011-08-09Fixed tests that check INTERNAL_IPS setting.Jason Keene