Преглед изворни кода

Use Action and Notice func.

Steve Thielemann пре 3 година
родитељ
комит
a26e97666d
1 измењених фајлова са 5 додато и 3 уклоњено
  1. 5 3
      client_test.go

+ 5 - 3
client_test.go

@@ -480,9 +480,11 @@ func TestConnectAutojoin(t *testing.T) {
 				// messages set to echo are returned to us
 				config.WriteTo("echo", "PRIVMSG echo :\x01VERSION\x01")
 				config.WriteTo("echo", "PRIVMSG echo :\x01TIME\x01")
-				config.WriteTo("echo", "PRIVMSG echo :\x01ACTION dances.\x01")
-				config.WriteTo("#test", "PRIVMSG #test :Message 1")
-				config.WriteTo("#test", "PRIVMSG #test :Message 2")
+				config.WriteTo("echo", "PRIVMSG echo :\x01PING 12345\x01")
+				config.Action("echo", "dances.")
+				config.Notice("echo", "Testing")
+				config.Msg("#test", "Message 1")
+				config.Msg("#test", "Message 2")
 			}
 		}
 	}