#[derive(Clone)] pub struct MoreThanText; impl MoreThanText { pub async fn new() -> Self { Self {} } } #[cfg(test)] mod database { use super::*; #[async_std::test] async fn create() { MoreThanText::new().await; } }