(self)
| 26 | assert all(self.nodes == plot.nodes.dimension_values(2)) |
| 27 | |
| 28 | def test_default_hover_tooltip(self): |
| 29 | from bokeh.models import HoverTool |
| 30 | |
| 31 | plot = hvnx.draw(self.g) |
| 32 | hover = next(t for t in plot.opts['tools'] if isinstance(t, HoverTool)) |
| 33 | assert [('index', '@{index_hover}')] == hover.tooltips |
nothing calls this directly
no outgoing calls
no test coverage detected