Simple example of splitting cells into lines of width 3.
()
| 117 | |
| 118 | |
| 119 | def test_chop_cells(): |
| 120 | """Simple example of splitting cells into lines of width 3.""" |
| 121 | text = "abcdefghijk" |
| 122 | assert chop_cells(text, 3) == ["abc", "def", "ghi", "jk"] |
| 123 | |
| 124 | |
| 125 | def test_chop_cells_double_width_boundary(): |
nothing calls this directly
no test coverage detected