()
| 7 | use crate::bootstrap::connection_pool; |
| 8 | |
| 9 | pub async fn tear_down() { |
| 10 | let pool = connection_pool().await; |
| 11 | sqlx::query("TRUNCATE community_board, community_comment, auth_account, auth_token_stat,service_outbox") |
| 12 | .execute(pool) |
| 13 | .await |
| 14 | .unwrap(); |
| 15 | } |
| 16 | |
| 17 | pub async fn run_test<T>(test: T) |
| 18 | where |
no test coverage detected