()
| 937 | |
| 938 | #[test] |
| 939 | fn test_parse_turn_start_no_prompt() { |
| 940 | let hook = make_hook(); |
| 941 | let input = br#"{"conversation_id": "c1"}"#; |
| 942 | let event = hook.parse_event(HookType::TurnStart, input).unwrap(); |
| 943 | assert!(event.prompt.is_none()); |
| 944 | } |
| 945 | |
| 946 | #[test] |
| 947 | fn test_parse_turn_start_model_in_raw_json() { |
nothing calls this directly
no test coverage detected