You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the #756 munit-diff was extracted, so that it can be used outside of munit context, as it is a very useful micro library.
The diffing mechanism is based on class Diff(val obtained: String, val expected: String), where a string representation of a datatype is expected. It is optimized for the Printers, which are currently in munit module (for toString it doesn't work as nicely, in munit it is merely a fallback mechanism if Printers do not reveal any difference).
I can work on extracting it into munit-diff, but wanted to ask for green light here, maybe there are some gotchas that I missed and it was left out on purpose.
The text was updated successfully, but these errors were encountered:
In the #756 munit-diff was extracted, so that it can be used outside of munit context, as it is a very useful micro library.
The diffing mechanism is based on
class Diff(val obtained: String, val expected: String)
, where a string representation of a datatype is expected. It is optimized for the Printers, which are currently inmunit
module (fortoString
it doesn't work as nicely, in munit it is merely a fallback mechanism if Printers do not reveal any difference).I can work on extracting it into
munit-diff
, but wanted to ask for green light here, maybe there are some gotchas that I missed and it was left out on purpose.The text was updated successfully, but these errors were encountered: