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

Function test_parse_post_tool_command

atomic-agent/src/hooks/devin.rs:560–565  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

558
559 #[test]
560 fn test_parse_post_tool_command() {
561 let hook = make_hook();
562 let input = br#"{"session_id":"devin-123","action":"command","command":"cargo test"}"#;
563 let event = hook.parse_event(HookType::PostToolUse, input).unwrap();
564 assert_eq!(event.tool_name.as_deref(), Some("command"));
565 }
566
567 #[test]
568 fn test_parse_event_empty_input() {

Callers

nothing calls this directly

Calls 3

make_hookFunction · 0.70
unwrapMethod · 0.45
parse_eventMethod · 0.45

Tested by

no test coverage detected