use rusible::inventory::{Host, Inventory};
#[tokio::test]
async fn hello() {
let mut inventory = Inventory::new([
Host {
name: "wsw-ops-testkk-v-001".to_string(),
host: "10.4.139.190".to_string(),
port: 63305,
user: "root".to_string(),
password: Some("z4DKCwN6w9re4DDx".to_string()),
}
]).await.unwrap();
inventory.test().await.unwrap();
}