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