This commit is contained in:
Kyle 2014-12-23 18:20:30 +00:00
commit e91d7779a2
2 changed files with 7 additions and 1 deletions

View File

@ -72,7 +72,7 @@ func splitMessage(msg string, splitLen int) (msgs []string) {
if idx < 0 {
idx = splitLen
}
msgs = append(msgs, msg[:idx] + "...")
msgs = append(msgs, msg[:idx]+"...")
msg = msg[idx:]
}
return append(msgs, msg)
@ -105,6 +105,9 @@ func (conn *Conn) Join(channel string, key ...string) {
conn.Raw(JOIN + " " + channel + k)
}
// JoinKey() sends a JOIN command to the server with a key
func (conn *Conn) JoinWithKey(channel string, key string) { conn.Raw(JOIN + " " + channel + " " + key) }
// Part() sends a PART command to the server with an optional part message
func (conn *Conn) Part(channel string, message ...string) {
msg := strings.Join(message, " ")

View File

@ -100,6 +100,9 @@ func TestClientCommands(t *testing.T) {
c.Join("#foo bar")
s.nc.Expect("JOIN #foo bar")
c.JoinWithKey("#foo", "bar")
s.nc.Expect("JOIN #foo bar")
c.Part("#foo")
s.nc.Expect("PART #foo")
c.Part("#foo", "Screw you guys...")