(self)
| 329 | assert curl_command == expected_curl_command |
| 330 | |
| 331 | def test_get(self): |
| 332 | request_object = Request("https://www.example.com") |
| 333 | expected_curl_command = "curl -X GET https://www.example.com" |
| 334 | self._test_request(request_object, expected_curl_command) |
| 335 | |
| 336 | def test_post(self): |
| 337 | request_object = Request( |
nothing calls this directly
no test coverage detected