X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=mudpy%2Ftests%2Fselftest.py;h=0eb4e8b09faaa3ea4e7c3d4622f4011a4fde45a0;hp=d8f51063621aaac345d6ad6eb44c51603006f006;hb=f8040fb2e7fcd4457fd1b3394fa58660d37a047e;hpb=87f655b9fd09c77b168f90139239f88fad7576eb diff --git a/mudpy/tests/selftest.py b/mudpy/tests/selftest.py index d8f5106..0eb4e8b 100644 --- a/mudpy/tests/selftest.py +++ b/mudpy/tests/selftest.py @@ -154,6 +154,12 @@ test_admin_help = ( (2, "This will save all active accounts", ""), ) +test_reload = ( + (2, "> ", "reload"), + (2, r"Reloading all code modules, configs and data\." + r".* User admin reloaded the world\.", ""), +) + test_show_element = ( (2, "> ", "show element internal:counters"), (2, r'These are the properties of the "internal:counters" element ' @@ -199,6 +205,7 @@ dialogue = ( (test_admin_setup, "admin account setup"), (test_admin_restriction, "restricted admin commands"), (test_admin_help, "admin help"), + (test_reload, "reload"), (test_show_element, "show element"), (test_show_log, "show log"), (test_custom_loglevel, "custom loglevel"),