()
| 774 | |
| 775 | #[test] |
| 776 | fn test_format_timestamp_relative_weeks() { |
| 777 | let ts = Utc::now() - chrono::Duration::weeks(2); |
| 778 | let formatted = format_timestamp_relative(&ts); |
| 779 | assert!(formatted.contains("weeks ago")); |
| 780 | } |
| 781 | |
| 782 | // ------------------------------------------------------------------------- |
| 783 | // Size Formatting Tests |
nothing calls this directly
no test coverage detected