added 3 login tests

This commit is contained in:
2025-06-30 14:02:22 +02:00
parent a50d1946ce
commit 1009ebfc1e
7 changed files with 127 additions and 8 deletions

7
tests/conftest.py Normal file
View File

@@ -0,0 +1,7 @@
import pytest
from server import app
@pytest.fixture
def client():
with app.test_client() as client:
yield client