()
| 453 | |
| 454 | #[test] |
| 455 | fn test_supported_hooks() { |
| 456 | let hook = make_hook(); |
| 457 | let supported = hook.supported_hooks(); |
| 458 | assert!(supported.contains(&HookType::SessionStart)); |
| 459 | assert!(supported.contains(&HookType::SessionEnd)); |
| 460 | assert!(supported.contains(&HookType::TurnStart)); |
| 461 | assert!(supported.contains(&HookType::TurnEnd)); |
| 462 | assert!(supported.contains(&HookType::PostToolUse)); |
| 463 | } |
| 464 | |
| 465 | #[test] |
| 466 | fn test_hook_verbs() { |
nothing calls this directly
no test coverage detected