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

Function test_parse_event_empty_input

atomic-agent/src/hooks/kiro.rs:527–533  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

525
526 #[test]
527 fn test_parse_event_empty_input() {
528 let hook = make_hook();
529 let result = hook.parse_event(HookType::TurnStart, b"");
530 assert!(result.is_err());
531 let err = result.unwrap_err();
532 assert!(matches!(err, AgentError::HookInputEmpty { .. }));
533 }
534
535 // --- parse_event: invalid JSON ---
536

Callers

nothing calls this directly

Calls 2

make_hookFunction · 0.70
parse_eventMethod · 0.45

Tested by

no test coverage detected