File size: 237 Bytes
d8bbcde
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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