Move randomized integration test into its own file

This commit is contained in:
Max Brunsfeld 2022-12-21 11:26:24 -08:00
parent 47348542ef
commit d8ccdff9fc
4 changed files with 1402 additions and 1348 deletions

View file

@ -3,10 +3,11 @@ pub mod auth;
pub mod db;
pub mod env;
pub mod executor;
#[cfg(test)]
mod integration_tests;
pub mod rpc;
#[cfg(test)]
mod tests;
use axum::{http::StatusCode, response::IntoResponse};
use db::Database;
use serde::Deserialize;