Correct data type for see_also command facets
[mudpy.git] / mudpy / tests / selftest.py
index 56549da..1b2de6a 100644 (file)
@@ -215,6 +215,11 @@ test_admin_help = (
     (2, "This will save all active accounts", ""),
 )
 
+test_help = (
+    (0, "> ", "help say"),
+    (0, r"See also: .*chat.*> ", ""),
+)
+
 test_abbrev = (
     (0, "> ", "h"),
     (0, r"h\[elp\].*m\[ove\].*> ", "he mo"),
@@ -353,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"),