()
| 804 | |
| 805 | #[test] |
| 806 | fn test_table_truncation() { |
| 807 | let truncated = Table::truncate("Hello, World!", 8); |
| 808 | assert_eq!(truncated, "Hello..."); |
| 809 | } |
| 810 | |
| 811 | #[test] |
| 812 | fn test_table_truncation_no_need() { |
nothing calls this directly
no test coverage detected