(self)
| 198 | self._assertIndexedLikeNDArray(x, value, dtype) |
| 199 | |
| 200 | def test_index_0d_float(self): |
| 201 | for value, dtype in [(0.5, float), (np.float32(0.5), np.float32)]: |
| 202 | x = self.cls(["x"], [value]) |
| 203 | self._assertIndexedLikeNDArray(x, value, dtype) |
| 204 | |
| 205 | def test_index_0d_string(self): |
| 206 | value = "foo" |
nothing calls this directly
no test coverage detected