mirror of https://github.com/MingweiSamuel/Riven
21 lines
450 B
Rust
21 lines
450 B
Rust
mod testutils;
|
|
use riven::consts::*;
|
|
use testutils::*;
|
|
|
|
const ROUTE: RegionalRoute = RegionalRoute::SEA;
|
|
|
|
static MATCHES: &[&str] = &[
|
|
// https://github.com/MingweiSamuel/Riven/issues/65
|
|
"TH2_24825892",
|
|
];
|
|
|
|
#[riven_test]
|
|
async fn match_v5_get_test() -> Result<(), String> {
|
|
match_v5_get(ROUTE, MATCHES).await
|
|
}
|
|
|
|
#[riven_test]
|
|
async fn match_v5_get_timeline_test() -> Result<(), String> {
|
|
match_v5_get_timeline(ROUTE, MATCHES).await
|
|
}
|