()
| 543 | |
| 544 | #[test] |
| 545 | fn test_parse_event_empty_session_id() { |
| 546 | let hook = make_hook(); |
| 547 | let input = br#"{"session_id": ""}"#; |
| 548 | let event = hook.parse_event(HookType::TurnStart, input).unwrap(); |
| 549 | assert!(event.session_id.starts_with("kilo-")); |
| 550 | } |
| 551 | |
| 552 | #[test] |
| 553 | fn test_parse_prompt_submit() { |
nothing calls this directly
no test coverage detected