(self)
| 91 | assert_array_equal(self.values, v) |
| 92 | |
| 93 | def test_copy(self): |
| 94 | self.assertLazyAndIdentical(self.eager_var, self.lazy_var.copy()) |
| 95 | self.assertLazyAndIdentical(self.eager_var, self.lazy_var.copy(deep=True)) |
| 96 | |
| 97 | def test_chunk(self): |
| 98 | test_cases: list[tuple[int | dict[str, Any], tuple[tuple[int, ...], ...]]] = [ |
nothing calls this directly
no test coverage detected