kenken999's picture
test
d8bbcde
raw
history blame
237 Bytes
import pytest
from fastapi.testclient import TestClient
from backend.fastapi_app import app
client = TestClient(app)
def test_get_google_lens_data():
response = client.get("/google-lens-data")
assert response.status_code == 200