(axis, how, data, expected)
| 232 | ], |
| 233 | ) |
| 234 | def test_dropna(axis, how, data, expected): |
| 235 | td = TabularData(["col-1", "col-2", "col-3"]) |
| 236 | td.extend(data) |
| 237 | td.dropna(axis, how) |
| 238 | assert list(td) == expected |
| 239 | |
| 240 | |
| 241 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected