tethys icon indicating copy to clipboard operation
tethys copied to clipboard

Scalatest integration

Open tethys-json opened this issue 7 years ago • 0 comments

We need special matcher for json strings that doesn't care about object fields order. Something like that:

"""{"a": 1, "b": [1, 2, 3], "c": true }""" should equalJson(obj(
  "a" -> 1,
  "c" -> true,
  "b" -> arr(1, 2, 3)
))

tethys-json avatar Apr 25 '18 10:04 tethys-json