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

Function test_parse_user_prompt

atomic-agent/src/hooks/copilot.rs:635–645  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

633
634 #[test]
635 fn test_parse_user_prompt() {
636 let hook = make_hook();
637 let input = br#"{"session_id": "s1", "prompt": "Fix the auth bug in login.rs"}"#;
638 let event = hook.parse_event(HookType::TurnStart, input).unwrap();
639 assert_eq!(event.session_id, "s1");
640 assert_eq!(event.event_type, HookType::TurnStart);
641 assert_eq!(
642 event.prompt.as_deref(),
643 Some("Fix the auth bug in login.rs")
644 );
645 }
646
647 #[test]
648 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