(self)
| 815 | assert table.num_rows == 0 |
| 816 | |
| 817 | def test_bom(self): |
| 818 | rows = b"\xef\xbb\xbfa,b\n1,2\n" |
| 819 | expected_data = {'a': [1], 'b': [2]} |
| 820 | table = self.read_bytes(rows) |
| 821 | assert table.to_pydict() == expected_data |
| 822 | |
| 823 | def test_one_chunk(self): |
| 824 | # ARROW-7661: lack of newline at end of file should not produce |
nothing calls this directly
no test coverage detected