()
| 148 | |
| 149 | #[test] |
| 150 | fn test_invalid_slug_format() { |
| 151 | // parse_project_path should fail for a slug without '/' |
| 152 | let result = parse_project_path("no-slash"); |
| 153 | assert!(result.is_err()); |
| 154 | } |
| 155 | |
| 156 | #[test] |
| 157 | fn test_valid_slug_parsing() { |
nothing calls this directly
no test coverage detected