Releases: jarus/flask-testing
Releases · jarus/flask-testing
Version 0.8.0
Version 0.6.2
- Add support for OS chosen port in
LiveServerTestCase - Better error messages when missing required modules
assertRedirectsnow supports all valid redirect codes as specified
in the HTTP protocol- Fixed bug that caused
TypeErrorinstead ofAssertionErrorwhen
testing against used templates - Fixed bug in
assertRedirectswhere the location was not being
checked properly
Version 0.6.1
- Fix issues that prevented tests from running when blinker was not installed
Version 0.6.0
LiveServerTestCasewill now start running as soon as the server is upassertRedirectsnow respects theSERVER_NAMEconfig value and can compare against absolute URLs- Compatibility with Flask 0.11.1
Version 0.5.0
- Improvements to
LiveServerTestCase- The test case will now block until the server is available
- Fixed an issue where no request context was available
- Fixed an issue where tests would be run twice when
DEBUGwas set to True
- Add missing message arguments for assertRedirects and assertContext
- Better default failure message for assertRedirects
- Better default failure message for assertTemplateUsed
- Fix an issue that caused the
render_templatesoption to not clean up after itself if set to False - Update docs to use new Flask extension import specification
Version 0.4.2
- Improved teardown to be more graceful.
- Add
messageargument toassertStatusrespectively all assertion methods with fixed status likeassert404.