()
| 742 | |
| 743 | #[test] |
| 744 | fn test_parse_user_prompt() { |
| 745 | let hook = make_hook(); |
| 746 | let input = br#"{"session_id": "s1", "prompt": "Fix the auth bug in login.rs"}"#; |
| 747 | let event = hook.parse_event(HookType::TurnStart, input).unwrap(); |
| 748 | assert_eq!(event.session_id, "s1"); |
| 749 | assert_eq!(event.event_type, HookType::TurnStart); |
| 750 | assert_eq!( |
| 751 | event.prompt.as_deref(), |
| 752 | Some("Fix the auth bug in login.rs") |
| 753 | ); |
| 754 | } |
| 755 | |
| 756 | #[test] |
| 757 | fn test_parse_user_prompt_no_prompt() { |
nothing calls this directly
no test coverage detected