mod point; #[cfg(test)] mod test { use super::point::{Path, Point}; #[test] fn can_create_path_directly() { let path: Path = Path { points: vec![ Point { x: 10, y: 25 }, Point { x: 25, y: 10 } ], }; } }