forked from mirror/Riven
1
0
Fork 0
Riven/tests/tests_americas.rs

25 lines
842 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;
2021-06-05 03:43:08 +00:00
// use testutils::*;
use colored::*;
// use riven::consts::*;
async_tests!{
my_runner {
// DISABLED FOR API KEY ACCESS.
// match_v5_get: async {
// let p = RIOT_API.match_v5().get_match(Region::AMERICAS, "NA1_3923487226");
// let m = p.await.map_err(|e| e.to_string())?.ok_or("Match not found.".to_owned())?;
// rassert_eq!("NA1_3923487226", m.metadata.match_id, "Bad match id? {}", m.metadata.match_id);
// rassert!(!m.metadata.participants.is_empty(), "Match should have participants.");
// rassert!(!m.info.teams.is_empty(), "Match should have teams.");
// Ok(())
// },
}
}