X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=mudpy%2Ftests%2Fselftest.py;h=497d9701771b21f93a27085e7e2ae627a1e1e511;hp=520f2fd45674c359e54208f9118d4ebcef61875c;hb=2f395c0d81aa9ca60a86940dcb4c49c9f7e5815d;hpb=509e33f717fdbd455792f4cba3f2a583dc6100db diff --git a/mudpy/tests/selftest.py b/mudpy/tests/selftest.py index 520f2fd..497d970 100644 --- a/mudpy/tests/selftest.py +++ b/mudpy/tests/selftest.py @@ -245,6 +245,11 @@ test_show_version = ( (2, r"Running mudpy .* on .* Python 3.*with.*pyyaml.*> ", ""), ) +test_show_time = ( + (2, "> ", "show time"), + (2, r"\r\n[0-9]+ increments elapsed.*> ", ""), +) + test_show_files = ( (2, "> ", "show files"), (2, r'These are the current files containing the universe:.*' @@ -345,6 +350,7 @@ dialogue = ( (test_set_facet, "set facet"), (test_set_refused, "refuse altering read-only element"), (test_show_version, "show version and diagnostic info"), + (test_show_time, "show elapsed world clock increments"), (test_show_files, "show a list of loaded files"), (test_show_file, "show nodes from a specific file"), (test_show_groups, "show groups"),