()
| 19 | |
| 20 | |
| 21 | def test_explorer_basic(): |
| 22 | explorer = hvplot.explorer(df) |
| 23 | |
| 24 | assert isinstance(explorer, hvDataFrameExplorer) |
| 25 | assert explorer.kind == 'scatter' |
| 26 | assert explorer.x == 'index' |
| 27 | assert explorer.y == 'species' |
| 28 | |
| 29 | |
| 30 | def test_explorer_settings(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…