()
| 69 | |
| 70 | |
| 71 | def test_figure_double_rendering(): |
| 72 | f = folium.Figure() |
| 73 | out = f.render() |
| 74 | out2 = f.render() |
| 75 | assert out == out2 |
| 76 | |
| 77 | bounds = f.get_bounds() |
| 78 | assert bounds == [[None, None], [None, None]], bounds |
| 79 | |
| 80 | |
| 81 | def test_marker_popups(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…