()
| 262 | |
| 263 | #[tokio::test] |
| 264 | async fn test_detect_default_tech_stack() { |
| 265 | let temp_dir = TempDir::new().unwrap(); |
| 266 | |
| 267 | // No special files created |
| 268 | let result = detect_stack(temp_dir.path()).await.unwrap(); |
| 269 | assert_eq!(result, "default"); |
| 270 | } |
| 271 | |
| 272 | #[tokio::test] |
| 273 | async fn test_detect_project_name() { |
nothing calls this directly
no test coverage detected