We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
exc_info
This would allow asserting that an exception had been logged. Supporting bool | BaseException for the match would be ideal.
bool | BaseException
False
True
BaseException
None
A logged.exception() helper would complete the feature.
logged.exception()
The text was updated successfully, but these errors were encountered:
Matcher
Refactor record matching to use internal Matcher class (#126)
98b26f6
This will make adding new features such as #25, #26 and #80 easier. It also opens the door to #31 and #124, if desired in future.
Logged
Refactored Matcher and Logged to use dataclasses (#127)
71741d8
This reduces LOC and manual boilerplate for `__eq__` and `__init__`. This will make adding new features such as #25, #26 and #80 easier.
No branches or pull requests
This would allow asserting that an exception had been logged. Supporting
bool | BaseException
for the match would be ideal.False
- No exceptionTrue
- Any exceptiomBaseException
- EqualityNone
- AnythingA
logged.exception()
helper would complete the feature.The text was updated successfully, but these errors were encountered: