Add tests to check fetching sub/user/oauth

This commit is contained in:
Matthew Esposito 2023-06-06 15:28:36 -04:00
parent 6cd53abd42
commit 0ca0eefaa4
No known key found for this signature in database
4 changed files with 25 additions and 2 deletions

View file

@ -208,3 +208,14 @@ impl Device {
}
}
}
#[tokio::test]
async fn test_oauth_client() {
initialize().await;
}
#[tokio::test]
async fn test_oauth_client_refresh() {
initialize().await;
OAUTH_CLIENT.write().await.refresh().await.unwrap();
}