()
| 29 | |
| 30 | |
| 31 | def test_flatten_no_origin(): |
| 32 | tab = T(pd.DataFrame.from_dict({"col": [[1, 2, 3, 4]]}), format="pandas") |
| 33 | |
| 34 | assert_table_equality_wo_index( |
| 35 | tab.flatten(this.col), |
| 36 | T( |
| 37 | """ |
| 38 | col |
| 39 | 1 |
| 40 | 2 |
| 41 | 3 |
| 42 | 4 |
| 43 | """, |
| 44 | ), |
| 45 | ) |
| 46 | |
| 47 | |
| 48 | def test_flatten_inner_repeats(): |