(self)
| 1687 | self.check_reader(reader, expected_schema, [expected_data]) |
| 1688 | |
| 1689 | def test_header(self): |
| 1690 | rows = b"abc,def,gh\n" |
| 1691 | reader = self.open_bytes(rows) |
| 1692 | expected_schema = pa.schema([('abc', pa.null()), |
| 1693 | ('def', pa.null()), |
| 1694 | ('gh', pa.null())]) |
| 1695 | self.check_reader(reader, expected_schema, []) |
| 1696 | |
| 1697 | def test_inference(self): |
| 1698 | # Inference is done on first block |
nothing calls this directly
no test coverage detected