()
| 966 | |
| 967 | #[test] |
| 968 | fn test_parse_invalid_json() { |
| 969 | let hook = make_hook(); |
| 970 | let result = hook.parse_event(HookType::SessionStart, b"not json"); |
| 971 | assert!(result.is_err()); |
| 972 | } |
| 973 | |
| 974 | #[test] |
| 975 | fn test_parse_missing_session_id_defaults() { |
nothing calls this directly
no test coverage detected