from fastapi.testclient import TestClient
from app.main import app

client = TestClient(app)

def test_about_page_loads():
    response = client.get("/about")
    assert response.status_code == 200
    assert "À propos" in response.text or "Geekbrain" in response.text
