()
| 182 | |
| 183 | #[test] |
| 184 | fn parse_project_path_valid() { |
| 185 | let (ws, proj) = parse_project_path("my-ws/my-proj").unwrap(); |
| 186 | assert_eq!(ws, "my-ws"); |
| 187 | assert_eq!(proj, "my-proj"); |
| 188 | } |
| 189 | |
| 190 | #[test] |
| 191 | fn parse_project_path_extra_slashes_takes_first() { |
nothing calls this directly
no test coverage detected