MCPcopy
hub / github.com/pandas-dev/pandas / test_copy

Method test_copy

pandas/tests/internals/test_internals.py:279–282  ·  view source on GitHub ↗
(self, fblock)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 2

assert_block_equalFunction · 0.85
copyMethod · 0.45

Tested by

no test coverage detected