(self)
| 823 | self.read_csv(sio) |
| 824 | |
| 825 | def test_header(self): |
| 826 | rows = b"abc,def,gh\n" |
| 827 | table = self.read_bytes(rows) |
| 828 | assert isinstance(table, pa.Table) |
| 829 | self.check_names(table, ["abc", "def", "gh"]) |
| 830 | assert table.num_rows == 0 |
| 831 | |
| 832 | def test_bom(self): |
| 833 | rows = b"\xef\xbb\xbfa,b\n1,2\n" |
nothing calls this directly
no test coverage detected