delete method

Future<TestResponse> delete()

Executes this request with HTTP DELETE.

The returned Future will complete with an instance of TestResponse which can be used in test expectations using hasResponse or hasStatus.

Implementation

Future<TestResponse> delete() {
  return _executeRequest("DELETE");
}