()
| 313 | |
| 314 | |
| 315 | def test_set_index_numeric_columns(): |
| 316 | pdf = pd.DataFrame( |
| 317 | { |
| 318 | 0: list("ABAABBABAA"), |
| 319 | 1: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], |
| 320 | 2: [1, 2, 3, 2, 1, 3, 2, 4, 2, 3], |
| 321 | } |
| 322 | ) |
| 323 | ddf = from_pandas(pdf, 3) |
| 324 | assert_eq(ddf.set_index(0), pdf.set_index(0)) |
| 325 | |
| 326 | |
| 327 | def test_set_index_without_sort(df, pdf): |
nothing calls this directly
no test coverage detected