()
| 852 | |
| 853 | #[test] |
| 854 | fn test_turn_event_prompt_summary_short() { |
| 855 | let event = TurnEvent::new("s", HookType::TurnStart).with_prompt("Fix the bug"); |
| 856 | assert_eq!(event.prompt_summary(100), Some("Fix the bug".to_string())); |
| 857 | } |
| 858 | |
| 859 | #[test] |
| 860 | fn test_turn_event_prompt_summary_truncated() { |
nothing calls this directly
no test coverage detected