feat: add ping endpoint with test infrastructure

Implement ping() method on OnspringClient. Set up wiremock-based test
infrastructure with shared setup helper. Add tests for success and
unauthorized scenarios verifying correct headers are sent.
This commit is contained in:
Stevan Freeborn
2026-03-25 13:35:52 -05:00
parent 7f2209af1c
commit 6735bca09f
4 changed files with 63 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
use onspring::OnspringClient;
use wiremock::MockServer;
pub async fn setup() -> (MockServer, OnspringClient) {
let mock_server = MockServer::start().await;
let client = OnspringClient::builder("test-api-key")
.base_url(mock_server.uri())
.build();
(mock_server, client)
}