aboutsummaryrefslogtreecommitdiffstats
path: root/tests/zotapi.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/zotapi.rs')
-rw-r--r--tests/zotapi.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/zotapi.rs b/tests/zotapi.rs
index 93c9795..7d10c6b 100644
--- a/tests/zotapi.rs
+++ b/tests/zotapi.rs
@@ -239,3 +239,17 @@ fn fetch_abconfig() {
let _res = z.abconfig().fetch().unwrap();
m.assert();
}
+
+#[test]
+fn fetch_privacy_groups() {
+ let m = mock("GET", "/api/z/1.0/group")
+ .match_header("Authorization", Matcher::Regex(r"Basic \w+".into()))
+ .with_status(200)
+ .with_header("content-type", "application/json")
+ .with_body("{}")
+ .create();
+
+ let z = zotapi::client(&format!("http://{}", mockito::SERVER_ADDRESS), "testuser", "test1234");
+ let _res = z.group().fetch().unwrap();
+ m.assert();
+}