forked from mirror/Riven
1
0
Fork 0
Riven/riven/tests/tests_sg2.rs

22 lines
529 B
Rust
Raw Normal View History

#![cfg_attr(feature = "nightly", feature(custom_test_frameworks))]
#![cfg_attr(feature = "nightly", test_runner(my_runner))]
mod async_tests;
mod testutils;
use colored::*;
use riven::consts::*;
2024-01-21 03:41:46 +00:00
use testutils::*;
const ROUTE: PlatformRoute = PlatformRoute::SG2;
2023-05-10 18:20:15 +00:00
async_tests! {
my_runner {
status: async {
let p = RIOT_API.lol_status_v4().get_platform_data(ROUTE);
let status = p.await.map_err(|e| e.to_string())?;
println!("{:?}", status);
Ok(())
},
}
}