()
| 423 | |
| 424 | #[test] |
| 425 | fn test_parse_event_empty_session_id() { |
| 426 | let hook = make_hook(); |
| 427 | let input = br#"{"session_id": "", "cwd": "/tmp"}"#; |
| 428 | let result = hook.parse_event(HookType::SessionStart, input); |
| 429 | assert!(result.is_err()); |
| 430 | } |
| 431 | |
| 432 | // --- parse_event: session-start --- |
| 433 |
nothing calls this directly
no test coverage detected