1
0
mirror of https://github.com/ilri/dspace-statistics-api.git synced 2024-07-05 04:23:45 +02:00
dspace-statistics-api/tests/test_api_docs.py

19 lines
365 B
Python
Raw Normal View History

from falcon import testing
import pytest
from dspace_statistics_api.app import api
@pytest.fixture
def client():
return testing.TestClient(api)
def test_get_docs(client):
"""Test requesting the documentation at the root."""
response = client.simulate_get("/")
assert isinstance(response.content, bytes)
assert response.status_code == 200