()
| 1344 | |
| 1345 | #[test] |
| 1346 | fn test_stdout_response() { |
| 1347 | let hook = make_hook(); |
| 1348 | assert_eq!(hook.stdout_response(HookType::TurnStart), Some("{}")); |
| 1349 | assert_eq!(hook.stdout_response(HookType::TurnEnd), Some("{}")); |
| 1350 | assert_eq!(hook.stdout_response(HookType::PostToolUse), Some("{}")); |
| 1351 | } |
| 1352 | |
| 1353 | // Parse event tests |
| 1354 |
nothing calls this directly
no test coverage detected