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

Function test_supported_hooks

atomic-agent/src/hooks/codex.rs:671–680  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

669
670 #[test]
671 fn test_supported_hooks() {
672 let hooks = make_hook().supported_hooks();
673 assert_eq!(hooks.len(), 5);
674 assert!(hooks.contains(&HookType::SessionStart));
675 assert!(hooks.contains(&HookType::TurnStart));
676 assert!(hooks.contains(&HookType::TurnEnd));
677 assert!(hooks.contains(&HookType::PreToolUse));
678 assert!(hooks.contains(&HookType::PostToolUse));
679 assert!(!hooks.contains(&HookType::SessionEnd));
680 }
681
682 #[test]
683 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