瀏覽代碼

Support CI (client input) !

Steve Thielemann 3 年之前
父節點
當前提交
5659a77916
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      test-director.cpp

+ 3 - 0
test-director.cpp

@@ -39,6 +39,9 @@ TEST(director, director_debugging) {
   for (auto line : lines) {
     if (line[0] == '^') {
       dir.server_prompt(line.substr(1), line.substr(1));
+    } else if (line[0] == '!') {
+      // client input
+      dir.client_input(line.substr(1));
     } else {
       dir.server_line(line, line);
     }