apimock 4.7.2

HTTP(S) mock server. Drop JSON files into a folder and your API immediately exists.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(dead_code)]

// inner attribute above suppresses unused warns for pub fns
// as test mods are compiled separately in rust and therefore the compiler doesn’t consider external calls

#[path = "constant.rs"]
mod constant;
#[path = "util/file.rs"]
mod file;
#[path = "util/http.rs"]
pub mod http;
#[path = "util/test_setup.rs"]
pub mod test_setup;
#[path = "util/tls.rs"]
mod tls;