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

Function test_parse_event_empty_input

atomic-agent/src/hooks/opencode.rs:873–879  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

871
872 #[test]
873 fn test_parse_event_empty_input() {
874 let hook = make_hook();
875 let result = hook.parse_event(HookType::TurnEnd, b"");
876 assert!(result.is_err());
877 let err = result.unwrap_err();
878 assert!(matches!(err, AgentError::HookInputEmpty { .. }));
879 }
880
881 #[test]
882 fn test_parse_event_invalid_json() {

Callers

nothing calls this directly

Calls 2

make_hookFunction · 0.70
parse_eventMethod · 0.45

Tested by

no test coverage detected