(self, fblock)
| 277 | assert len(fblock) == len(fblock.values) |
| 278 | |
| 279 | def test_copy(self, fblock): |
| 280 | cop = fblock.copy(deep=True) |
| 281 | assert cop is not fblock |
| 282 | assert_block_equal(fblock, cop) |
| 283 | |
| 284 | def test_delete(self, fblock): |
| 285 | newb = fblock.copy(deep=True) |
nothing calls this directly
no test coverage detected