(s: &str, sep: char)
| 202 | "GET" => HttpMethod::Get, |
| 203 | "POST" => HttpMethod::Post, |
| 204 | "PUT" => HttpMethod::Put, |
| 205 | "DELETE" => HttpMethod::Delete, |
| 206 | "PATCH" => HttpMethod::Patch, |
| 207 | "HEAD" => HttpMethod::Head, |
| 208 | "OPTIONS" => HttpMethod::Options, |
| 209 | _ => HttpMethod::Get, |
| 210 | } |
no outgoing calls
no test coverage detected