use luno_rs::Luno;
use serde_json::json;
use std::env;
#[tokio::test] async fn test_luno_async() {
dotenv::dotenv().ok();
let key = env::var("API_KEY").expect("Api Key doesn't exist yet, please add");
let secret = env::var("API_SECRET").expect("Api Key Secret doesn't exist yet, please add");
let luno = Luno::init(key, secret).await;
let balance = luno.get_all_balance().await;
assert!(balance.is_ok());
}