assertBodyContains method

TestResponse assertBodyContains(
  1. String nest
)

Asserts that the response body contains nest.

Implementation

TestResponse assertBodyContains(String nest) {
  expect(raw.body, contains(nest));
  return this;
}