Closed mytestopia closed 2 months ago
Added new inut matching rule equals_unordered, allowing find stubs for lists with different order
For example stub
{ . . "input":{ "equals_unordered":{ "ids": [1, 2] } } . . }
will match requests with ids=[1, 2] and ids=[2, 1]
when stub
{ . . "input":{ "equals":{ "ids": [1, 2] } } . . }
will match only requests with ids=[1, 2]
Added new inut matching rule equals_unordered, allowing find stubs for lists with different order
For example stub
will match requests with ids=[1, 2] and ids=[2, 1]
when stub
will match only requests with ids=[1, 2]