(self)
| 659 | assert not actual.foo.variable._in_memory |
| 660 | |
| 661 | def test_roundtrip_None_variable(self) -> None: |
| 662 | expected = Dataset({None: (("x", "y"), [[0, 1], [2, 3]])}) |
| 663 | with self.roundtrip(expected) as actual: |
| 664 | assert_identical(expected, actual) |
| 665 | |
| 666 | def test_roundtrip_object_dtype(self) -> None: |
| 667 | floats = np.array([0.0, 0.0, 1.0, 2.0, 3.0], dtype=object) |
nothing calls this directly
no test coverage detected