web3-proxy/web3_proxy/tests/test_admins.rs

31 lines
697 B
Rust
Raw Normal View History

2023-06-29 22:41:21 +03:00
mod common;
use crate::common::TestApp;
#[cfg_attr(not(feature = "tests-needing-docker"), ignore)]
#[ignore = "under construction"]
2023-06-29 22:41:21 +03:00
#[test_log::test(tokio::test)]
async fn test_admin_imitate_user() {
let x = TestApp::spawn(true).await;
2023-06-29 22:41:21 +03:00
todo!();
}
#[cfg_attr(not(feature = "tests-needing-docker"), ignore)]
#[ignore = "under construction"]
2023-06-29 22:41:21 +03:00
#[test_log::test(tokio::test)]
async fn test_admin_grant_credits() {
let x = TestApp::spawn(true).await;
2023-06-29 22:41:21 +03:00
todo!();
}
#[cfg_attr(not(feature = "tests-needing-docker"), ignore)]
#[ignore = "under construction"]
2023-06-29 22:41:21 +03:00
#[test_log::test(tokio::test)]
async fn test_admin_change_user_tier() {
let x = TestApp::spawn(true).await;
2023-06-29 22:41:21 +03:00
todo!();
}