()
| 944 | |
| 945 | #[test] |
| 946 | fn test_display_minimal() { |
| 947 | let e = make_minimal_envelope(); |
| 948 | let s = e.to_string(); |
| 949 | assert!(s.contains("Turn 1")); |
| 950 | assert!(s.contains("s1")); |
| 951 | assert!(s.contains("test-agent")); |
| 952 | assert!(!s.contains("—")); // no prompt |
| 953 | } |
| 954 | |
| 955 | #[test] |
| 956 | fn test_display_long_prompt_truncated() { |
nothing calls this directly
no test coverage detected