(self)
| 1431 | return (getattr(self, name) for name in attr_names) |
| 1432 | |
| 1433 | def test_basic(self): |
| 1434 | slc = np.s_[2:-1] |
| 1435 | for arr in self.values(): |
| 1436 | res = trim_zeros(arr) |
| 1437 | assert_array_equal(res, arr[slc]) |
| 1438 | |
| 1439 | def test_leading_skip(self): |
| 1440 | slc = np.s_[:-1] |
nothing calls this directly
no test coverage detected