()
| 619 | |
| 620 | #[test] |
| 621 | fn test_repo_root_hints_missing_field() { |
| 622 | let hook = make_hook(); |
| 623 | let input = br#"{"conversationId": "s1"}"#; |
| 624 | let event = hook.parse_event(HookType::TurnStart, input).unwrap(); |
| 625 | assert!(hook.repo_root_hints(&event).is_none()); |
| 626 | } |
| 627 | |
| 628 | #[test] |
| 629 | fn test_repo_root_hints_empty_array() { |
nothing calls this directly
no test coverage detected