(self, *args, **kwargs)
| 608 | class TestSerialJSONRead(BaseTestJSONRead, unittest.TestCase): |
| 609 | |
| 610 | def read_json(self, *args, **kwargs): |
| 611 | read_options = kwargs.setdefault('read_options', ReadOptions()) |
| 612 | read_options.use_threads = False |
| 613 | table = read_json(*args, **kwargs) |
| 614 | table.validate(full=True) |
| 615 | return table |
| 616 | |
| 617 | |
| 618 | class TestParallelJSONRead(BaseTestJSONRead, unittest.TestCase): |
no test coverage detected