1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-05-15 03:53:27 +00:00

Allow Join command to take an optional key.

This commit is contained in:
Alex Bramley 2014-12-23 18:21:53 +00:00
parent 57eecccd1b
commit 2e39250355
2 changed files with 10 additions and 2 deletions

View file

@ -97,6 +97,8 @@ func TestClientCommands(t *testing.T) {
c.Join("#foo")
s.nc.Expect("JOIN #foo")
c.Join("#foo bar")
s.nc.Expect("JOIN #foo bar")
c.Part("#foo")
s.nc.Expect("PART #foo")