moto/tests/test_panorama/test_server.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
265 B
Python
Raw Normal View History

2023-12-24 16:12:45 +00:00
"""Test different server responses."""
import moto.server as server
def test_panorama_list():
backend = server.create_backend_app("panorama")
test_client = backend.test_client()
resp = test_client.get("/devices")
assert resp.status_code == 200