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

Function test_supported_hooks

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

Source from the content-addressed store, hash-verified

523
524 #[test]
525 fn test_supported_hooks() {
526 let hook = make_hook();
527 let hooks = hook.supported_hooks();
528 assert_eq!(hooks.len(), 5);
529 assert!(hooks.contains(&HookType::SessionStart));
530 assert!(hooks.contains(&HookType::SessionEnd));
531 assert!(hooks.contains(&HookType::TurnStart));
532 assert!(hooks.contains(&HookType::PreToolUse));
533 assert!(hooks.contains(&HookType::PostToolUse));
534 // No TurnEnd for Copilot
535 assert!(!hooks.contains(&HookType::TurnEnd));
536 }
537
538 #[test]
539 fn test_supported_hooks_count() {

Callers

nothing calls this directly

Calls 2

make_hookFunction · 0.70
supported_hooksMethod · 0.45

Tested by

no test coverage detected