(self)
| 534 | ) |
| 535 | |
| 536 | def test_roundtrip_test_data(self) -> None: |
| 537 | expected = create_test_data() |
| 538 | with self.roundtrip(expected) as actual: |
| 539 | self.check_dtypes_roundtripped(expected, actual) |
| 540 | assert_identical(expected, actual) |
| 541 | |
| 542 | def test_load(self) -> None: |
| 543 | # Note: please keep this in sync with test_load_async below as much as possible! |
nothing calls this directly
no test coverage detected