From fb3d996d90f9e496654ae4485b9d036dcc7baf8a Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Tue, 7 Aug 2018 12:11:39 +0200 Subject: First iteration of getting channel stream from server. --- tests/zotapi.rs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/zotapi.rs (limited to 'tests') diff --git a/tests/zotapi.rs b/tests/zotapi.rs new file mode 100644 index 0000000..c45673f --- /dev/null +++ b/tests/zotapi.rs @@ -0,0 +1,18 @@ +extern crate zotapi; +extern crate mockito; + +use mockito::mock; + +#[test] +fn get_channel_stream() { + let m = mock("GET", "/api/z/1.0/channel/stream") + .with_status(200) + .with_header("content-type", "application/json") + .with_body("{}") + .create(); + + let z = zotapi::client(format!("http://{}", mockito::SERVER_ADDRESS)); + let data = z.channel_stream(); + m.assert(); + assert_eq!(data, "{}"); +} -- cgit v1.2.3