()
| 860 | |
| 861 | #[test] |
| 862 | fn test_turn_event_prompt_summary_short() { |
| 863 | let event = TurnEvent::new("s", HookType::TurnStart).with_prompt("Fix the bug"); |
| 864 | assert_eq!(event.prompt_summary(100), Some("Fix the bug".to_string())); |
| 865 | } |
| 866 | |
| 867 | #[test] |
| 868 | fn test_turn_event_prompt_summary_truncated() { |
nothing calls this directly
no test coverage detected