()
| 759 | |
| 760 | #[test] |
| 761 | fn test_format_timestamp_relative_weeks() { |
| 762 | let ts = Utc::now() - chrono::Duration::weeks(2); |
| 763 | let formatted = format_timestamp_relative(&ts); |
| 764 | assert!(formatted.contains("weeks ago")); |
| 765 | } |
| 766 | |
| 767 | // ------------------------------------------------------------------------- |
| 768 | // Size Formatting Tests |
nothing calls this directly
no test coverage detected