()
| 555 | |
| 556 | #[tokio::test] |
| 557 | async fn test_engine_fire_no_hooks() { |
| 558 | let engine = HookEngine::new(); |
| 559 | let event = make_pre_tool_event("s1", "Bash"); |
| 560 | |
| 561 | let result = engine.fire(&event).await; |
| 562 | assert!(result.is_continue()); |
| 563 | } |
| 564 | |
| 565 | #[tokio::test] |
| 566 | async fn test_engine_fire_no_handler() { |
nothing calls this directly
no test coverage detected