Subject: | Better multi-line diagnostics. |
Multi-line diagnostics from is() come out sloppily.
# got: '> Some things seem
# > seem the same
# '
# expected: '> Some things
# > seem the same
# '
It would be easier to read like this
# got:
# '> Some things seem
# > seem the same
# '
# expected:
# '> Some things
# > seem the same
# '
If got and/or expected are multi-line is() should output in a format like the above.