MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / test_parse_event_empty_input

Function test_parse_event_empty_input

atomic-agent/src/hooks/sherpa.rs:391–397  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

389
390 #[test]
391 fn test_parse_event_empty_input() {
392 let hook = make_hook();
393 let result = hook.parse_event(HookType::SessionStart, b"");
394 assert!(result.is_err());
395 let err = result.unwrap_err();
396 assert!(matches!(err, AgentError::HookInputEmpty { .. }));
397 }
398
399 // --- parse_event: invalid JSON ---
400

Callers

nothing calls this directly

Calls 2

make_hookFunction · 0.70
parse_eventMethod · 0.45

Tested by

no test coverage detected