(df, pdf)
| 1371 | |
| 1372 | |
| 1373 | def test_dataframe_iterrows(df, pdf): |
| 1374 | for a, b in zip(df.iterrows(), pdf.iterrows()): |
| 1375 | pd.testing.assert_series_equal(a[1], b[1]) |
| 1376 | |
| 1377 | |
| 1378 | def test_dataframe_itertuples(df, pdf): |
nothing calls this directly
no test coverage detected
searching dependent graphs…