0.19.4
·
1145 commits
to master
since this release
new features and improvements
- Introduce
compareWithPreviousValue
for Json and Stringsession_value
using anAssertion
(#396, #394) @agourlay
And assert session_value("my-key").asJson.path("product.price").compareWithPreviousValue[Int] { case (prev, current) => LessThanAssertion(prev, current) }
And assert session_value("my-key").compareWithPreviousValue { case (prev, current) => LessThanAssertion(prev.length, current.length) }
And assert session_values("k1", "k2").asJson.path("a.b.c").areEquals
-
Improve error reporting for
cornichon-http-mock
(#393) @agourlay -
Split
cornichon-check
documentation in several pages for readability 410dcc5 @agourlay
bug fixes
dependency updates
- Update diffson-circe to 4.0.3 (#397) @scala-steward