(self)
| 164 | assert table.to_pydict() == {'a': [1, 2, 3]} |
| 165 | |
| 166 | def test_no_newline_at_end(self): |
| 167 | rows = b'{"a": 1,"b": 2, "c": 3}\n{"a": 4,"b": 5, "c": 6}' |
| 168 | table = self.read_bytes(rows) |
| 169 | assert table.to_pydict() == { |
| 170 | 'a': [1, 4], |
| 171 | 'b': [2, 5], |
| 172 | 'c': [3, 6], |
| 173 | } |
| 174 | |
| 175 | def test_simple_ints(self): |
| 176 | # Infer integer columns |
nothing calls this directly
no test coverage detected