(self)
| 269 | array(x) # used to fail due to 'V' padding field in x.dtype.descr |
| 270 | |
| 271 | def test_unknown_keyword_parameter(self): |
| 272 | with pytest.raises(TypeError, match="unexpected keyword argument"): |
| 273 | MaskedArray([1, 2, 3], maks=[0, 1, 0]) # `mask` is misspelled. |
| 274 | |
| 275 | def test_asarray(self): |
| 276 | (x, y, a10, m1, m2, xm, ym, z, zm, xf) = self.d |
nothing calls this directly
no test coverage detected