()
| 413 | |
| 414 | #[test] |
| 415 | fn test_parse_event_missing_session_id() { |
| 416 | let hook = make_hook(); |
| 417 | let input = br#"{"cwd": "/tmp", "model": "claude-sonnet-4-6"}"#; |
| 418 | let result = hook.parse_event(HookType::SessionStart, input); |
| 419 | assert!(result.is_err()); |
| 420 | } |
| 421 | |
| 422 | // --- parse_event: empty session_id --- |
| 423 |
nothing calls this directly
no test coverage detected