()
| 919 | |
| 920 | #[test] |
| 921 | fn test_turn_event_display() { |
| 922 | let event = |
| 923 | TurnEvent::new("sess-abc", HookType::TurnStart).with_prompt("Fix authentication bug"); |
| 924 | let display = event.to_string(); |
| 925 | assert!(display.contains("turn_start")); |
| 926 | assert!(display.contains("sess-abc")); |
| 927 | assert!(display.contains("Fix authentication bug")); |
| 928 | } |
| 929 | |
| 930 | #[test] |
| 931 | fn test_turn_event_display_with_tool() { |
nothing calls this directly
no test coverage detected