X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=mudpy%2Ftests%2Fselftest.py;h=6755195c16144286cc9db70d45e73c6f7dda7d99;hp=ddb09f033569909e65974d6c17fcfa807bf76a17;hb=dc3b9c3f13b06b80db5c9f9a4c15804dfd60af4a;hpb=73a4f24fc4819d7b6b50064d660b24b231a33d9e diff --git a/mudpy/tests/selftest.py b/mudpy/tests/selftest.py index ddb09f0..6755195 100644 --- a/mudpy/tests/selftest.py +++ b/mudpy/tests/selftest.py @@ -215,10 +215,17 @@ test_admin_help = ( (2, "This will save all active accounts", ""), ) +test_help = ( + (0, "> ", "help say"), + (0, r"See also: .*chat.*> ", ""), +) + test_abbrev = ( - (0, "> ", "help mov"), - (0, r"Move in a specific direction\.", "mov north"), - (0, r"You exit to the north\.", ""), + (0, "> ", "h"), + (0, r"h\[elp\].*m\[ove\].*> ", "he mo"), + (0, r"Move in a specific direction\..*> ", "mov nor"), + (0, r"You exit to the north\..*> ", "m s"), + (0, r"You exit to the south\..*> ", ""), ) test_reload = ( @@ -351,6 +358,7 @@ dialogue = ( (test_telnet_unknown_option, "log unknown telnet option"), (test_admin_restriction, "restricted admin commands"), (test_admin_help, "admin help"), + (test_help, "help command"), (test_abbrev, "command abbreviation"), (test_reload, "reload"), (test_set_facet, "set facet"),