aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2020-02-13 14:45:41 +0100
committerHarald Eilertsen <haraldei@anduin.net>2020-02-13 14:45:41 +0100
commitd99083c47ddd31288ed1b688002388f6e68c5e04 (patch)
tree08e90a0da26512fe19470c8bd7ff0d81d3dffd4c /tests
parentda461fc867b7c9211116fe7d0c23afbb96f6aaa4 (diff)
downloadrust-zotapi-d99083c47ddd31288ed1b688002388f6e68c5e04.tar.gz
rust-zotapi-d99083c47ddd31288ed1b688002388f6e68c5e04.tar.bz2
rust-zotapi-d99083c47ddd31288ed1b688002388f6e68c5e04.zip
Refactor how ABConfigs are fetched.
Introduce a `z()` menber function that creates the request object that we use for further configuring the requset. This eliminates the need to two fetch functions, and is meant to provide a consistent way of doing these requests.
Diffstat (limited to 'tests')
-rw-r--r--tests/zotapi.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/zotapi.rs b/tests/zotapi.rs
index 9dbf5cf..b5c1652 100644
--- a/tests/zotapi.rs
+++ b/tests/zotapi.rs
@@ -266,7 +266,7 @@ fn fetch_abconfig() {
.with_body(&data)
.create();
- let res = zotapi::abconfig::fetch(&client()).unwrap();
+ let res = zotapi::ABConfig::z().fetch(&client()).unwrap();
m.assert();
assert_eq!(res.len(), 2);
@@ -282,7 +282,7 @@ fn fetch_abconfig_for_specific_contact() {
.with_body("[]")
.create();
- zotapi::abconfig::with_abook_id(42).fetch(&client()).unwrap();
+ zotapi::ABConfig::z().with_abook_id(42).fetch(&client()).unwrap();
m.assert();
}