(url: &str)
| 184 | |
| 185 | #[cfg(not(feature = "mock"))] |
| 186 | fn api_get(url: &str) -> RequestBuilder { |
| 187 | with_behavior_headers(Request::get(url)) |
| 188 | } |
| 189 | |
| 190 | #[cfg(not(feature = "mock"))] |
| 191 | fn api_post(url: &str) -> RequestBuilder { |
no test coverage detected