(self, spam_data, flavor_read_html)
| 269 | assert isinstance(df, DataFrame) |
| 270 | |
| 271 | def test_spam_header(self, spam_data, flavor_read_html): |
| 272 | df = flavor_read_html(spam_data, match=".*Water.*", header=2)[0] |
| 273 | assert df.columns[0] == "Proximates" |
| 274 | assert not df.empty |
| 275 | |
| 276 | def test_skiprows_int(self, spam_data, flavor_read_html): |
| 277 | df1 = flavor_read_html(spam_data, match=".*Water.*", skiprows=1) |
nothing calls this directly
no test coverage detected