MCPcopy
hub / github.com/dask/dask / test_items

Function test_items

dask/dataframe/dask_expr/tests/test_collection.py:2486–2492  ·  view source on GitHub ↗
(df, pdf)

Source from the content-addressed store, hash-verified

2484
2485
2486def test_items(df, pdf):
2487 expect = list(pdf.items())
2488 actual = list(df.items())
2489 assert len(expect) == len(actual)
2490 for (expect_name, expect_col), (actual_name, actual_col) in zip(expect, actual):
2491 assert expect_name == actual_name
2492 assert_eq(expect_col, actual_col)
2493
2494
2495def test_isin_strings():

Callers

nothing calls this directly

Calls 2

assert_eqFunction · 0.90
itemsMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…