()
| 95 | |
| 96 | # DivIcon. |
| 97 | def test_divicon(): |
| 98 | html = """<svg height="100" width="100"> |
| 99 | <circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" fill="red" /> |
| 100 | </svg>""" # noqa |
| 101 | div = folium.DivIcon(html=html) |
| 102 | assert isinstance(div, Element) |
| 103 | assert div.options["class_name"] == "empty" |
| 104 | assert div.options["html"] == html |
| 105 | |
| 106 | |
| 107 | # ColorLine. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…