summaryrefslogtreecommitdiff
path: root/test/test_mdict.py
Commit message (Collapse)AuthorAgeFilesLines
* Tests cleanup so tehy run in PyCharm.Marcel Hellkamp2015-11-281-6/+0
|
* fix: All test-cases now support 2.x and 3.x from the same source.Marcel Hellkamp2011-12-021-4/+4
|
* Reverted parts of 937328 and fixed MultiDict for py3k.Marcel Hellkamp2011-06-031-0/+2
| | | | MultiDict now behaves exactly like a dict.
* Added tests for server adapters and run() routine.Marcel Hellkamp2010-07-051-1/+1
| | | | | Cleaned up testall.py and added command-line controls. Added shell script to test all python versions available on a system.
* bugfix: HeaderDict.get() was case sensitive.Marcel Hellkamp2010-06-021-0/+10
|
* HeaderDict now replaces '_' with '-' in keysMarcel Hellkamp2010-03-081-1/+1
|
* Another 5% code coverage, some real and many cosmetic changes. Read more...Marcel Hellkamp2010-01-251-0/+41
Added app_push() and app_pop() to easily work on a separate bottle app without interfering with other modules. This makes testing easier a lot. Response.charset now gets its value from the Content-Type header and is read only. Add '; charset=...' to response.content_type to change it. The static_file() helper does not change the response.header dict anymore. This side effect is gone. The new headers are part of the returned HTTPResponse object and applied later. This way it is easier to recover from an 40x error by just ignoring the returned HTTPError object. You don't have to undo the header changes anymore. Secure cookies now work with Python3 too. This is a pure hack. Don't use it.