(self)
| 364 | array(x) # used to fail due to 'V' padding field in x.dtype.descr |
| 365 | |
| 366 | def test_unknown_keyword_parameter(self): |
| 367 | with pytest.raises(TypeError, match="unexpected keyword argument"): |
| 368 | MaskedArray([1, 2, 3], maks=[0, 1, 0]) # `mask` is misspelled. |
| 369 | |
| 370 | def test_asarray(self): |
| 371 | xm = self._create_data()[5] |
nothing calls this directly
no test coverage detected