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

Function test_parse_session_start_with_model

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

Source from the content-addressed store, hash-verified

499
500 #[test]
501 fn test_parse_session_start_with_model() {
502 let hook = make_hook();
503 let input = br#"{"session_id":"s1","model":"claude-sonnet-4"}"#;
504 let event = hook.parse_event(HookType::SessionStart, input).unwrap();
505 assert_eq!(event.session_id, "s1");
506 let raw = event.raw_json.unwrap();
507 assert_eq!(raw["model"], "claude-sonnet-4");
508 }
509
510 #[test]
511 fn test_parse_session_end() {

Callers

nothing calls this directly

Calls 3

make_hookFunction · 0.70
unwrapMethod · 0.45
parse_eventMethod · 0.45

Tested by

no test coverage detected