(axis, expected)
| 246 | ], |
| 247 | ) |
| 248 | def test_dropna_subset(axis, expected): |
| 249 | td = TabularData(["col-1", "col-2", "col-3"]) |
| 250 | td.extend([["foo"], ["foo", "bar"], ["foo", "bar", "foobar"]]) |
| 251 | td.dropna(axis, subset=["col-1", "col-2"]) |
| 252 | assert list(td) == expected |
| 253 | |
| 254 | |
| 255 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected