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