From 36063a6cb60f6488518beb5ac9cde0e4db4e2aa3 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Wed, 6 Aug 2025 22:56:10 +0200 Subject: [PATCH] Update tests/test_utils_elog.py --- tests/test_utils_elog.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/test_utils_elog.py b/tests/test_utils_elog.py index 3f699638..99810781 100644 --- a/tests/test_utils_elog.py +++ b/tests/test_utils_elog.py @@ -25,6 +25,11 @@ def get_default_elog_password(url, **kwargs): kwargs["password"] = pw return kwargs["password"] +def test_check_required_attributes(): + url = "http://localhost:8080/demo?cmd=Config" + response = requests.get(url, auth=("robot", "testpassword")) + print(response.text) # Cherchez "Required Attributes" dans l'output + # Connexion basique avec credentials connus def get_test_elog():