Explorar el Código

Support CI (client input) !

Steve Thielemann hace 3 años
padre
commit
5659a77916
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  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);
     }