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

Function test_supported_hooks

atomic-agent/src/hooks/pi.rs:615–625  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

613
614 #[test]
615 fn test_supported_hooks() {
616 let hook = make_hook();
617 let hooks = hook.supported_hooks();
618 assert_eq!(hooks.len(), 6);
619 assert!(hooks.contains(&HookType::SessionStart));
620 assert!(hooks.contains(&HookType::SessionEnd));
621 assert!(hooks.contains(&HookType::TurnStart));
622 assert!(hooks.contains(&HookType::TurnEnd));
623 assert!(hooks.contains(&HookType::PreToolUse));
624 assert!(hooks.contains(&HookType::PostToolUse));
625 }
626
627 #[test]
628 fn test_hook_verbs() {

Callers

nothing calls this directly

Calls 2

make_hookFunction · 0.70
supported_hooksMethod · 0.45

Tested by

no test coverage detected