(url: &str)
| 194 | |
| 195 | #[cfg(not(feature = "mock"))] |
| 196 | fn api_patch(url: &str) -> RequestBuilder { |
| 197 | with_behavior_headers(Request::patch(url)) |
| 198 | } |
| 199 | |
| 200 | #[cfg(not(feature = "mock"))] |
| 201 | fn api_delete(url: &str) -> RequestBuilder { |
no test coverage detected