(self)
| 232 | assert table.to_pydict() == {'a': [[]]} |
| 233 | |
| 234 | def test_empty_rows(self): |
| 235 | rows = b'{}\n{}\n' |
| 236 | table = self.read_bytes(rows) |
| 237 | schema = pa.schema([]) |
| 238 | assert table.schema == schema |
| 239 | assert table.num_columns == 0 |
| 240 | assert table.num_rows == 2 |
| 241 | |
| 242 | def test_explicit_schema_decimal(self): |
| 243 | rows = (b'{"a": 1}\n' |
nothing calls this directly
no test coverage detected