Releases: oatsoda/TeePee
Releases · oatsoda/TeePee
v2.0.1
v1.2.1
v1.1.1
- Add facility to partially match the request body JSON using
.ThatHasBodyContaining<T>()
and passing in a delegate to validate.- The request body will be deserialised to
T
using the RequestBodySerializerOptions before being passed to your delegate to decide whether it matches. - WARNING: Any reference types you use within the rule delegate will be evaluated at the point of request (as opposed to at TeePee Build() time) so you must be careful not to use the same ref types to seed your test data and this matching rule.
- The request body will be deserialised to