From 217b7d96fa262e1607a19008000973da559516d2 Mon Sep 17 00:00:00 2001 From: bashrc Date: Fri, 24 Apr 2026 12:17:00 +0100 Subject: [PATCH] Add unit test for domain check --- tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests.py b/tests.py index 895cca83e..ddf2ec8c4 100644 --- a/tests.py +++ b/tests.py @@ -9770,7 +9770,7 @@ def _test_post_collection() -> None: "https://lemmings/activities/like/7243" -def test_domain_check() -> None: +def _test_domain_check() -> None: print('test domain check') assert not resembles_domain('') assert not resembles_domain('abcdef') @@ -9799,6 +9799,7 @@ def run_all_tests(): _test_checkbox_names() _test_thread_functions() _test_functions() + _test_domain_check() _test_post_collection() _test_micron_blog(base_dir) _test_yggdrasil_addresses()