()
| 108 | } |
| 109 | |
| 110 | fn http_client() -> Client { |
| 111 | Client::builder() |
| 112 | .cookie_store(true) |
| 113 | .timeout(Duration::from_secs(10)) |
| 114 | .build() |
| 115 | .expect("Failed to build HTTP client") |
| 116 | } |
| 117 | |
| 118 | async fn login_admin(client: &Client, base_url: &str) { |
| 119 | let resp = client |
no outgoing calls
no test coverage detected