()
| 513 | |
| 514 | |
| 515 | def test_to_frame_column_rangeindex(): |
| 516 | idx = pd.Index([1]) |
| 517 | result = idx.to_frame().columns |
| 518 | expected = RangeIndex(1) |
| 519 | tm.assert_index_equal(result, expected, exact=True) |
| 520 | |
| 521 | |
| 522 | def test_to_frame_name_tuple_multiindex(): |
nothing calls this directly
no test coverage detected