from fastapi.testclient import TestClient
from ..main import app
client = TestClient(app)
def test_read_features():
response = client.get("/api/features")
assert response.status_code == 200
assert "dxf_layered_curves" in response.json()