pub struct Session; impl Session { pub fn new() -> Self { Self {} } } #[cfg(test)] mod session { use super::*; #[test] fn create() { Session::new(); } }