mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-07-01 22:13:01 +00:00
11 lines
230 B
Python
11 lines
230 B
Python
"""
|
|
Test http server
|
|
"""
|
|
|
|
from altair.utils.server import serve, MockServer
|
|
|
|
|
|
def test_serve():
|
|
html = "<html><title>Title</title><body><p>Content</p></body></html>"
|
|
serve(html, open_browser=False, http_server=MockServer)
|