()
| 933 | |
| 934 | #[test] |
| 935 | fn test_display_full() { |
| 936 | let e = make_envelope(); |
| 937 | let s = e.to_string(); |
| 938 | assert!(s.contains("Turn 3")); |
| 939 | assert!(s.contains("sess-abc-123")); |
| 940 | assert!(s.contains("claude-code")); |
| 941 | assert!(s.contains("12.4s")); |
| 942 | assert!(s.contains("Fix the authentication bug")); |
| 943 | } |
| 944 | |
| 945 | #[test] |
| 946 | fn test_display_minimal() { |
nothing calls this directly
no test coverage detected