mirror of https://github.com/fluffle/goirc
Merge c0bc414927
into 2e39250355
This commit is contained in:
commit
e91d7779a2
|
@ -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, " ")
|
||||
|
|
|
@ -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...")
|
||||
|
|
Loading…
Reference in New Issue