blob: c45673fd2bd84ef88587afac62a43dc1d6834ca1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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, "{}");
}
|