(self)
| 7 | |
| 8 | class TestExplicitStreamPlotting(TestCase): |
| 9 | def setUp(self): |
| 10 | import hvplot.pandas # noqa |
| 11 | |
| 12 | self.df = pd.DataFrame([[1, 2], [3, 4], [5, 6]], columns=['x', 'y']) |
| 13 | |
| 14 | def test_pipe_stream(self): |
| 15 | stream = Pipe(data=self.df) |
nothing calls this directly
no outgoing calls
no test coverage detected