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