#[derive(Clone, Debug)] pub struct Database; impl Database { fn new() -> Self { Self {} } } #[cfg(test)] mod dbase { use super::*; #[test] fn create_new() { Database::new(); } }