redding / assert

Assertion style testing framework.
https://github.com/redding/assert
MIT License
10 stars 1 forks source link

ensure consistent exception handling when running tests #149

Closed kellyredding closed 10 years ago

kellyredding commented 10 years ago

This ensures exceptions raised when running test teardown are handled the same as exceptions raised when running the setup/test itself. Before any fails generated in the teardown wouldn't be captured. Error results were being captured in teardowns but this behavior was not tested explicitly.

This also adds SignalException handling when running tests. This allows a test suite run to be interrupted (previously this was inter preted as an error result.

Closes #141.

@jcredding ready for review.

jcredding commented 10 years ago

@kellyredding - Looks good :boom: