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