forked from mirror/Riven
1
0
Fork 0
users/mingwei/unknown-variant-messy
Mingwei Samuel 2021-11-19 18:37:43 -08:00
parent 260bf8250a
commit fd892b1451
1 changed files with 9 additions and 0 deletions

View File

@ -47,6 +47,15 @@ async_tests!{
rassert!(!d.is_empty(), "Challenger shouldn't be empty.");
Ok(())
},
// TO TEST THIS BUG: https://github.com/RiotGames/developer-relations/issues/572.
league_getforsummoner_tftbug: async {
let summoner_fut = RIOT_API.summoner_v4().get_by_summoner_name(ROUTE, "TheNicoNi");
let summoner = summoner_fut.await.map_err(|e| e.to_string())?.ok_or_else(|| "Failed to get \"TheNicoNi\"".to_owned())?;
let league_fut = RIOT_API.league_v4().get_league_entries_for_summoner(ROUTE, &*summoner.id);
let league = league_fut.await.map_err(|e| e.to_string())?;
let _ = league;
Ok(())
},
// TODO: MATCH-V4 REMOVED.
// matchlist_get: async {