()
| 229 | |
| 230 | |
| 231 | def test_explorer_method_dataframe(): |
| 232 | explorer = df.hvplot.explorer() |
| 233 | |
| 234 | assert isinstance(explorer, hvDataFrameExplorer) |
| 235 | assert explorer.kind == 'scatter' |
| 236 | assert explorer.x == 'index' |
| 237 | assert explorer.y == 'species' |
| 238 | |
| 239 | |
| 240 | def test_explorer_method_grid(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…