moving repository to gitea

This commit is contained in:
2026-07-26 10:07:10 +02:00
parent 94687f5fc1
commit aaca513e23
59 changed files with 29784 additions and 0 deletions

10
webapp/tests/db_test.py Normal file
View File

@@ -0,0 +1,10 @@
# tests/db_test.py
# Simple test for the list_users database function
import pytest
from database import list_users
def test_list_users():
users = list_users()
assert isinstance(users, list)
# Optionally, check for a known user if you have one, e.g.:
# assert 'ADMIN' in users