(self)
| 1263 | return (getattr(self, name) for name in attr_names) |
| 1264 | |
| 1265 | def test_basic(self): |
| 1266 | slc = np.s_[2:-1] |
| 1267 | for arr in self.values(): |
| 1268 | res = trim_zeros(arr) |
| 1269 | assert_array_equal(res, arr[slc]) |
| 1270 | |
| 1271 | def test_leading_skip(self): |
| 1272 | slc = np.s_[:-1] |
nothing calls this directly
no test coverage detected