Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a bug where a step that _returns_ an exception object is reported… #64

Merged
merged 3 commits into from
Aug 22, 2023

Commits on Aug 22, 2023

  1. Fix a bug where a step that _returns_ an exception object is reported…

    … as having thrown an unhandled exception.
    
    PR #59 introduced a bug where a step that _returns_ an exception
    object fails. An example of this is a test function
    whose last expresssion is an assertion that something is thrown:
    ```
    (is (thrown? Exception ,,,))
    ```
    
    Fixed by distinguishing thrown vs. returned exceptions
    and adding unit tests.
    brandonvin committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    ba57f4d View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    brandonvin committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    08d2780 View commit details
    Browse the repository at this point in the history
  3. Update test docstrings

    brandonvin committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    3492e10 View commit details
    Browse the repository at this point in the history