()
| 448 | |
| 449 | #[test] |
| 450 | fn test_supported_hooks() { |
| 451 | let supported = make_hook().supported_hooks(); |
| 452 | assert!(supported.contains(&HookType::TurnStart)); |
| 453 | assert!(supported.contains(&HookType::TurnEnd)); |
| 454 | assert!(supported.contains(&HookType::PostToolUse)); |
| 455 | assert!(!supported.contains(&HookType::SessionStart)); |
| 456 | assert!(!supported.contains(&HookType::PreToolUse)); |
| 457 | } |
| 458 | |
| 459 | #[test] |
| 460 | fn test_hook_verbs() { |
nothing calls this directly
no test coverage detected