()
| 810 | |
| 811 | #[test] |
| 812 | fn test_table_truncation_no_need() { |
| 813 | let truncated = Table::truncate("Hi", 10); |
| 814 | assert_eq!(truncated, "Hi"); |
| 815 | } |
| 816 | |
| 817 | #[test] |
| 818 | fn test_table_truncation_very_short() { |
nothing calls this directly
no test coverage detected