put method

TestRequest put(
  1. String path
)

Create a PUT request for testing.

path The path to request (e.g., '/api/users/123'). Returns a TestRequest builder for the PUT request.

Implementation

TestRequest put(String path) {
  return TestRequest(_client, 'PUT', path, baseUrl);
}