()
| 899 | |
| 900 | #[test] |
| 901 | fn test_duration_display_exact_minutes() { |
| 902 | let e = SessionEnvelope::builder("s", "a") |
| 903 | .turn_duration_ms(120_000) |
| 904 | .build(); |
| 905 | assert_eq!(e.duration_display(), "2m"); |
| 906 | } |
| 907 | |
| 908 | #[test] |
| 909 | fn test_duration_display_zero() { |
nothing calls this directly
no test coverage detected