(state: &SharedState)
| 25 | #[test] |
| 26 | fn shared_state_exposes_shared_reqwest_client() { |
| 27 | fn assert_shape(state: &SharedState) { |
| 28 | let _client: &Arc<reqwest::Client> = state.http_client(); |
| 29 | } |
| 30 | // The function body compiles only when the API exists; the test itself |
| 31 | // does not need to construct a SharedState (which is heavy) — the |
| 32 | // compile check is the regression guard. |
nothing calls this directly
no test coverage detected