()
| 41 | |
| 42 | # Figure |
| 43 | def test_figure_creation(): |
| 44 | f = folium.Figure() |
| 45 | assert isinstance(f, Element) |
| 46 | |
| 47 | bounds = f.get_bounds() |
| 48 | assert bounds == [[None, None], [None, None]], bounds |
| 49 | |
| 50 | |
| 51 | def test_figure_rendering(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…