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

Method test_simple_writer

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

Source from the content-addressed store, hash-verified

808 self.writerAssertEqual([['abc']], 'abc\r\n')
809
810 def test_simple_writer(self):
811 self.writerAssertEqual([[1, 2, 'abc', 3, 4]], '1,2,abc,3,4\r\n')
812
813 def test_quotes(self):
814 self.writerAssertEqual([[1, 2, 'a"bc"', 3, 4]], '1,2,"a""bc""",3,4\r\n')

Callers

nothing calls this directly

Calls 1

writerAssertEqualMethod · 0.80

Tested by

no test coverage detected