pub mod id; pub mod record; struct Table; impl Table { fn new() -> Self { Self {} } } #[cfg(test)] mod table { use super::*; #[test] fn new_table() { let tbl = Table::new(); } }