(self)
| 491 | |
| 492 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 493 | def test_read_space_delimiter(self): |
| 494 | self._read_test(['a b', ' a ', ' ', ''], |
| 495 | [['a', '', '', 'b'], ['', '', 'a', '', ''], ['', '', ''], []], |
| 496 | delimiter=' ', skipinitialspace=False) |
| 497 | self._read_test(['a b', ' a ', ' ', ''], |
| 498 | [['a', 'b'], ['a', ''], [''], []], |
| 499 | delimiter=' ', skipinitialspace=True) |
| 500 | |
| 501 | def test_read_bigfield(self): |
| 502 | # This exercises the buffer realloc functionality and field size |
nothing calls this directly
no test coverage detected