MCPcopy
hub / github.com/treeverse/dvc / test_dropna

Function test_dropna

tests/unit/test_tabular_data.py:234–238  ·  view source on GitHub ↗
(axis, how, data, expected)

Source from the content-addressed store, hash-verified

232 ],
233)
234def test_dropna(axis, how, data, expected):
235 td = TabularData(["col-1", "col-2", "col-3"])
236 td.extend(data)
237 td.dropna(axis, how)
238 assert list(td) == expected
239
240
241@pytest.mark.parametrize(

Callers

nothing calls this directly

Calls 3

extendMethod · 0.95
dropnaMethod · 0.95
TabularDataClass · 0.90

Tested by

no test coverage detected