(self)
| 83 | import hvplot.streamz # noqa |
| 84 | |
| 85 | def test_streamz_dataframe_patched(self): |
| 86 | from streamz.dataframe import Random |
| 87 | |
| 88 | random_df = Random() |
| 89 | self.assertIsInstance(random_df.hvplot, hvPlotTabular) |
| 90 | |
| 91 | def test_streamz_series_patched(self): |
| 92 | from streamz.dataframe import Random |
nothing calls this directly
no outgoing calls
no test coverage detected