Any input on how to ditch the `unwrap`? If so, is ...
# strikt
e
Any input on how to ditch the
unwrap
? If so, is this ^ worth a PR?
I could add this function to
CompoundAssertions
Copy code
infix fun <R> map(block: CompoundAssertion.() -> Builder<R>): Builder<R>
r
I'm trying to figure out if any other assertions that might be applied to an
IgnoringBuilder
could have unexpected side effects. Is there a case for using anything other than
isEqualTo
I wonder?
e
I could use an internal class instead of Pair
r
hmm, I wonder if it might be possible to avoid the need for
unwrap
then because the
Assertion.Builder
could know how to get the subject from the tuple
e