Skip to content

Commit a6a0c3c

Browse files
author
Martin Journois
committed
Remove test_scroll_zoom_toggler and test_marker_cluster -> to plugins
1 parent 14b3671 commit a6a0c3c

1 file changed

Lines changed: 0 additions & 17 deletions

File tree

tests/test_folium.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -685,20 +685,3 @@ def test_image_overlay(self):
685685
'image_opacity': image_opacity})
686686

687687
assert ''.join(image_rendered.split()) in ''.join(out.split())
688-
689-
def test_scroll_zoom_toggler_plugin(self):
690-
"""Test ScrollZoomToggler plugin."""
691-
a_map = folium.Map([45, 3], zoom_start=4)
692-
a_map.add_plugin(ScrollZoomToggler())
693-
a_map._build_map()
694-
695-
def test_marker_cluster_plugin(self):
696-
"""Test MarkerCluster plugin."""
697-
data = [(35, -12, "lower left"),
698-
(35, 30, "lower right"),
699-
(60, -12, "upper left"),
700-
(60, 30, "upper right"),
701-
]
702-
a_map = folium.Map([0, 0], zoom_start=0)
703-
a_map.add_plugin(MarkerCluster(data))
704-
a_map._build_map()

0 commit comments

Comments
 (0)