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