(self)
| 700 | assert_identical(expected, actual) |
| 701 | |
| 702 | def test_roundtrip_string_data(self) -> None: |
| 703 | expected = Dataset({"x": ("t", ["ab", "cdef"])}) |
| 704 | with self.roundtrip(expected) as actual: |
| 705 | assert_identical(expected, actual) |
| 706 | |
| 707 | @pytest.mark.skipif(not HAS_STRING_DTYPE, reason="requires StringDType") |
| 708 | def test_roundtrip_stringdtype_data(self) -> None: |
nothing calls this directly
no test coverage detected