()
| 1311 | |
| 1312 | #[test] |
| 1313 | fn test_supported_hooks() { |
| 1314 | let supported = make_hook().supported_hooks(); |
| 1315 | assert!(supported.contains(&HookType::TurnStart)); |
| 1316 | assert!(supported.contains(&HookType::TurnEnd)); |
| 1317 | assert!(supported.contains(&HookType::PostToolUse)); |
| 1318 | assert!(!supported.contains(&HookType::SessionStart)); |
| 1319 | assert!(!supported.contains(&HookType::PreToolUse)); |
| 1320 | } |
| 1321 | |
| 1322 | #[test] |
| 1323 | fn test_hook_verbs() { |
nothing calls this directly
no test coverage detected