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

Method _read_test

Lib/test/test_csv.py:373–376  ·  view source on GitHub ↗
(self, input, expect, **kwargs)

Source from the content-addressed store, hash-verified

371 self.assertRaises(OSError, writer.writerows, BadIterable())
372
373 def _read_test(self, input, expect, **kwargs):
374 reader = csv.reader(input, **kwargs)
375 result = list(reader)
376 self.assertEqual(result, expect)
377
378 @unittest.expectedFailure # TODO: RUSTPYTHON
379 def test_read_oddinputs(self):

Callers 10

test_read_oddinputsMethod · 0.95
test_read_eolMethod · 0.95
test_read_eofMethod · 0.95
test_read_nulMethod · 0.95
test_read_delimiterMethod · 0.95
test_read_escapeMethod · 0.95
test_read_quotingMethod · 0.95
test_read_bigfieldMethod · 0.95

Calls 3

listClass · 0.85
readerMethod · 0.45
assertEqualMethod · 0.45

Tested by

no test coverage detected