()
| 481 | |
| 482 | #[test] |
| 483 | fn test_stdout_response() { |
| 484 | let hook = make_hook(); |
| 485 | assert_eq!(hook.stdout_response(HookType::TurnStart), Some("{}")); |
| 486 | assert_eq!(hook.stdout_response(HookType::TurnEnd), Some("{}")); |
| 487 | assert_eq!(hook.stdout_response(HookType::PostToolUse), Some("{}")); |
| 488 | } |
| 489 | |
| 490 | // Parse event tests |
| 491 |
nothing calls this directly
no test coverage detected