()
| 171 | |
| 172 | #[tokio::test] |
| 173 | async fn test_detect_python_tech_stack_requirements() { |
| 174 | let temp_dir = TempDir::new().unwrap(); |
| 175 | |
| 176 | // Create requirements.txt file |
| 177 | tokio::fs::write(temp_dir.path().join("requirements.txt"), "") |
| 178 | .await |
| 179 | .unwrap(); |
| 180 | |
| 181 | let result = detect_stack(temp_dir.path()).await.unwrap(); |
| 182 | assert_eq!(result, "python"); |
| 183 | } |
| 184 | |
| 185 | #[tokio::test] |
| 186 | async fn test_detect_node_tech_stack() { |
nothing calls this directly
no test coverage detected