Private
Public Access
1
0
This commit is contained in:
2024-04-21 15:14:16 -07:00
parent 0b2811dc9f
commit 3e878ced4e
8 changed files with 379 additions and 19 deletions

View File

@@ -1,16 +1,7 @@
mod api;
pub use self::api::TestClient;
pub mod model;
pub use self::api::APIInterface;
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_version() {
let client = TestClient{};
let version = client.version();
assert_eq!(version, "KordophoneTest-1.0");
}
}
pub mod tests;