MCPcopy Index your code
hub / github.com/RustPython/RustPython / test_read_space_delimiter

Method test_read_space_delimiter

Lib/test/test_csv.py:493–499  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

_read_testMethod · 0.95

Tested by

no test coverage detected