(pdf)
| 814 | |
| 815 | |
| 816 | def test_isna(pdf): |
| 817 | pdf.iloc[list(range(0, len(pdf), 2)), 0] = np.nan |
| 818 | df = from_pandas(pdf, npartitions=10) |
| 819 | assert_eq(isna(df.x), pd.isna(pdf.x)) |
| 820 | assert_eq(isna(df), pd.isna(pdf)) |
| 821 | assert_eq(isna(pdf.x), pd.isna(pdf.x)) |
| 822 | |
| 823 | |
| 824 | def test_clear_divisions(df): |
nothing calls this directly
no test coverage detected