(url: &str)
| 199 | |
| 200 | #[cfg(not(feature = "mock"))] |
| 201 | fn api_delete(url: &str) -> RequestBuilder { |
| 202 | with_behavior_headers(Request::delete(url)) |
| 203 | } |
| 204 | |
| 205 | #[cfg(any(not(feature = "mock"), test))] |
| 206 | fn local_media_api_base() -> String { |
no test coverage detected