Selaa lähdekoodia

Use Action and Notice func.

Steve Thielemann 3 vuotta sitten
vanhempi
commit
a26e97666d
1 muutettua tiedostoa jossa 5 lisäystä ja 3 poistoa
  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")
 			}
 		}
 	}