()
| 1482 | |
| 1483 | #[test] |
| 1484 | fn test_repo_root_hints_missing_field() { |
| 1485 | let hook = make_hook(); |
| 1486 | let input = br#"{"conversationId": "s1"}"#; |
| 1487 | let event = hook.parse_event(HookType::TurnStart, input).unwrap(); |
| 1488 | assert!(hook.repo_root_hints(&event).is_none()); |
| 1489 | } |
| 1490 | |
| 1491 | #[test] |
| 1492 | fn test_repo_root_hints_empty_array() { |
nothing calls this directly
no test coverage detected