(self)
| 814 | self.writerAssertEqual([[1, 2, 'a"bc"', 3, 4]], '1,2,"a""bc""",3,4\r\n') |
| 815 | |
| 816 | def test_quote_fieldsep(self): |
| 817 | self.writerAssertEqual([['abc,def']], '"abc,def"\r\n') |
| 818 | |
| 819 | def test_newlines(self): |
| 820 | self.writerAssertEqual([[1, 2, 'a\nbc', 3, 4]], '1,2,"a\nbc",3,4\r\n') |
nothing calls this directly
no test coverage detected