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

Function test_supported_hooks

atomic-agent/src/hooks/kiro.rs:483–494  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

481
482 #[test]
483 fn test_supported_hooks() {
484 let hook = make_hook();
485 let hooks = hook.supported_hooks();
486 assert_eq!(hooks.len(), 4);
487 assert!(hooks.contains(&HookType::TurnStart));
488 assert!(hooks.contains(&HookType::TurnEnd));
489 assert!(hooks.contains(&HookType::PreToolUse));
490 assert!(hooks.contains(&HookType::PostToolUse));
491 // Kiro doesn't have native SessionStart/SessionEnd
492 assert!(!hooks.contains(&HookType::SessionStart));
493 assert!(!hooks.contains(&HookType::SessionEnd));
494 }
495
496 // --- hook_verbs ---
497

Callers

nothing calls this directly

Calls 2

make_hookFunction · 0.70
supported_hooksMethod · 0.45

Tested by

no test coverage detected