(self)
| 808 | self.read_csv(sio) |
| 809 | |
| 810 | def test_header(self): |
| 811 | rows = b"abc,def,gh\n" |
| 812 | table = self.read_bytes(rows) |
| 813 | assert isinstance(table, pa.Table) |
| 814 | self.check_names(table, ["abc", "def", "gh"]) |
| 815 | assert table.num_rows == 0 |
| 816 | |
| 817 | def test_bom(self): |
| 818 | rows = b"\xef\xbb\xbfa,b\n1,2\n" |
nothing calls this directly
no test coverage detected