use rust_decimal::Decimal;
#[cfg(test)]
use super::future::Future;
#[tokio::main]
#[test]
async fn latest_price_test() {
let spot = Future::new("".to_string(), "".to_string());
let result = spot.latest_price("BTCUSDT".to_string()).await.unwrap();
assert_eq!(result > Decimal::ZERO, true);
}