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
Rewrite core internals in a more object oriented fashion.
actual
expected
BaseExpectation
class BaseMatcher: def message(self, *, actual=None, **kwargs) -> str: ... def _match(self, *, actual=None, **kwargs): ... def _negate(self, *, actual=None, **kwargs): ... def __call__(self, *, actual=None, **kwargs) -> bool: ...
equal
be
contain
be_contained_in
be_empty
be_true
be_truthy
be_false
be_falsey
be_of_type
inherit
greater_than
greater_than_or_equal
lesser_than_or_equal
lessert_than
be_numeric
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Rewrite core internals in a more object oriented fashion.
actual
andexpected
) fromBaseExpectation
to a new base classequal
as matcher #37be
as matcher #38contain
as matcher #39be_contained_in
as matcher #41be_empty
as matcher #40be_true
as matcher #42be_truthy
as matcher #43be_false
as matcher #44be_falsey
as matcher #45be_of_type
as matcher #46inherit
as matcher #52greater_than
as matcher #51greater_than_or_equal
as matcher #50lesser_than_or_equal
as matcher #49lessert_than
as matcher #48be_numeric
as matcher #47The text was updated successfully, but these errors were encountered: