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

Function test_parse_event_invalid_json

atomic-agent/src/hooks/kilo.rs:523–530  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

521
522 #[test]
523 fn test_parse_event_invalid_json() {
524 let hook = make_hook();
525 let result = hook.parse_event(HookType::TurnStart, b"not json");
526 assert!(result.is_err());
527 if let Err(AgentError::HookParseFailed { agent, .. }) = result {
528 assert_eq!(agent, "kilo");
529 }
530 }
531
532 #[test]
533 fn test_parse_event_missing_session_id() {

Callers

nothing calls this directly

Calls 2

make_hookFunction · 0.70
parse_eventMethod · 0.45

Tested by

no test coverage detected