MCPcopy Create free account
hub / github.com/holoviz/hvplot / test_plot_with_specific_tile_obj

Method test_plot_with_specific_tile_obj

hvplot/tests/testgeo.py:273–277  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

271 self.assertIn('ArcGIS', plot.get(0).data)
272
273 def test_plot_with_specific_tile_obj(self):
274 plot = self.df.hvplot.points('x', 'y', geo=False, tiles=hv.element.tiles.EsriImagery())
275 self.assertEqual(len(plot), 2)
276 self.assertIsInstance(plot.get(0), hv.Tiles)
277 self.assertIn('ArcGIS', plot.get(0).data)
278
279 def test_plot_with_specific_tile_obj_with_geo(self):
280 plot = self.df.hvplot.points('x', 'y', geo=True, tiles=hv.element.tiles.EsriImagery())

Callers

nothing calls this directly

Calls 1

pointsMethod · 0.45

Tested by

no test coverage detected