()
| 249 | |
| 250 | #[tokio::test] |
| 251 | async fn test_detect_lua_tech_stack_init() { |
| 252 | let temp_dir = TempDir::new().unwrap(); |
| 253 | |
| 254 | // Create init.lua file |
| 255 | tokio::fs::write(temp_dir.path().join("init.lua"), "") |
| 256 | .await |
| 257 | .unwrap(); |
| 258 | |
| 259 | let result = detect_stack(temp_dir.path()).await.unwrap(); |
| 260 | assert_eq!(result, "lua"); |
| 261 | } |
| 262 | |
| 263 | #[tokio::test] |
| 264 | async fn test_detect_default_tech_stack() { |
nothing calls this directly
no test coverage detected