()
| 256 | |
| 257 | #[test] |
| 258 | fn test_empty_matcher_matches_all() { |
| 259 | let matcher = HookMatcher::new(); |
| 260 | let event = make_pre_tool_event("s1", "Bash", serde_json::json!({})); |
| 261 | assert!(matcher.matches(&event)); |
| 262 | } |
| 263 | |
| 264 | #[test] |
| 265 | fn test_tool_matcher() { |
nothing calls this directly
no test coverage detected