-
Notifications
You must be signed in to change notification settings - Fork 2
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
Resolvables #53
Resolvables #53
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel like i'm forgetting something, but i also had these two thoughts.
|
||
def __init__(self) -> None: # pylint: disable=useless-super-delegation | ||
super().__init__() | ||
@beat("... hoping it's clickable") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think these need punctuation at the end, i.e.
@beat("... hoping it's clickable.")
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated. I also somehow missed adding two tests for confirming these messages.
assert annotation == "IsPresentElement" | ||
assert type(ip.matcher) == IsPresentElement | ||
assert type(ip.resolve()) == IsPresentElement |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't we have a test_matches_protocols
test that we run? Maybe that's just for Actions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like we don't have those tests in screenpy
for Resolutions, hm...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work, @bandophahita! Finally got these to follow the new standard. 👍
Addresses #43