()
| 840 | |
| 841 | #[test] |
| 842 | fn test_hook_verbs() { |
| 843 | let hook = make_hook(); |
| 844 | let verbs = hook.hook_verbs(); |
| 845 | assert_eq!( |
| 846 | verbs, |
| 847 | vec![ |
| 848 | "session-start", |
| 849 | "session-end", |
| 850 | "user-prompt-submit", |
| 851 | "stop", |
| 852 | "pre-tool", |
| 853 | "post-tool" |
| 854 | ] |
| 855 | ); |
| 856 | } |
| 857 | |
| 858 | #[test] |
| 859 | fn test_verb_to_hook_type() { |
nothing calls this directly
no test coverage detected