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

Function test_parse_user_prompt

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

Source from the content-addressed store, hash-verified

742
743 #[test]
744 fn test_parse_user_prompt() {
745 let hook = make_hook();
746 let input = br#"{"session_id": "s1", "prompt": "Fix the auth bug in login.rs"}"#;
747 let event = hook.parse_event(HookType::TurnStart, input).unwrap();
748 assert_eq!(event.session_id, "s1");
749 assert_eq!(event.event_type, HookType::TurnStart);
750 assert_eq!(
751 event.prompt.as_deref(),
752 Some("Fix the auth bug in login.rs")
753 );
754 }
755
756 #[test]
757 fn test_parse_user_prompt_no_prompt() {

Callers

nothing calls this directly

Calls 3

make_hookFunction · 0.70
unwrapMethod · 0.45
parse_eventMethod · 0.45

Tested by

no test coverage detected