(self)
| 295 | |
| 296 | @pytest.mark.numpy |
| 297 | def test_small_random_json(self): |
| 298 | data, expected = make_random_json(num_cols=2, num_rows=10) |
| 299 | table = self.read_bytes(data) |
| 300 | assert table.schema == expected.schema |
| 301 | assert table.equals(expected) |
| 302 | assert table.to_pydict() == expected.to_pydict() |
| 303 | |
| 304 | @pytest.mark.numpy |
| 305 | def test_load_large_json(self): |
nothing calls this directly
no test coverage detected