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