()
| 627 | |
| 628 | #[test] |
| 629 | fn test_repo_root_hints_empty_array() { |
| 630 | let hook = make_hook(); |
| 631 | let input = br#"{"conversationId": "s1", "workspacePaths": []}"#; |
| 632 | let event = hook.parse_event(HookType::TurnStart, input).unwrap(); |
| 633 | assert!(hook.repo_root_hints(&event).is_none()); |
| 634 | } |
| 635 | |
| 636 | // Detection tests |
| 637 |
nothing calls this directly
no test coverage detected