(self)
| 595 | NamedArray(("x", "x"), np.arange(4).reshape(2, 2)) |
| 596 | |
| 597 | def test_aggregation(self) -> None: |
| 598 | x: NamedArray[Any, np.dtype[np.int64]] |
| 599 | x = NamedArray(("x", "y"), np.arange(4).reshape(2, 2)) |
| 600 | |
| 601 | result = x.sum() |
| 602 | assert isinstance(result.data, np.ndarray) |
| 603 | |
| 604 | |
| 605 | def test_repr() -> None: |
nothing calls this directly
no test coverage detected