:param b: bytes to be parsed :param kwargs: arguments passed on to open the json file :return: b parsed as a single Table
(self, b, **kwargs)
| 130 | class BaseTestJSON(abc.ABC): |
| 131 | @abc.abstractmethod |
| 132 | def read_bytes(self, b, **kwargs): |
| 133 | """ |
| 134 | :param b: bytes to be parsed |
| 135 | :param kwargs: arguments passed on to open the json file |
| 136 | :return: b parsed as a single Table |
| 137 | """ |
| 138 | raise NotImplementedError |
| 139 | |
| 140 | def check_names(self, table, names): |
| 141 | assert table.num_columns == len(names) |
no outgoing calls
no test coverage detected