()
| 816 | |
| 817 | #[test] |
| 818 | fn test_table_truncation_very_short() { |
| 819 | let truncated = Table::truncate("Hello", 2); |
| 820 | assert_eq!(truncated, ".."); |
| 821 | } |
| 822 | |
| 823 | // ------------------------------------------------------------------------- |
| 824 | // KeyValueTable Tests |
nothing calls this directly
no test coverage detected