()
| 49 | |
| 50 | |
| 51 | def test_figure_rendering(): |
| 52 | f = folium.Figure() |
| 53 | out = f.render() |
| 54 | assert type(out) is str |
| 55 | |
| 56 | bounds = f.get_bounds() |
| 57 | assert bounds == [[None, None], [None, None]], bounds |
| 58 | |
| 59 | |
| 60 | def test_figure_html(tmpl): |
nothing calls this directly
no test coverage detected
searching dependent graphs…