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
Hello,
It would be nice to be able to use arrow matchers just like the rest of matchers in kotlintests. For example:
val x = Either.left("value") x shouldBeLeft "expected"
instead of:
val x = Either.left("value") x.shouldBeLeft("expected")
But this isn't possible due to the missing infix modifier on Arrow matchers.
infix
The text was updated successfully, but these errors were encountered:
Agreed! Do you want to do it?
Sorry, something went wrong.
Add infix modifier to more Arrow matchers (kotest#921)
a7d941d
24dad39
Add infix modifier to more Arrow matchers (#921) (#931)
3943e3e
@sksamuel I think we can close this one now.
No branches or pull requests
Hello,
It would be nice to be able to use arrow matchers just like the rest of matchers in kotlintests. For example:
instead of:
But this isn't possible due to the missing
infix
modifier on Arrow matchers.The text was updated successfully, but these errors were encountered: