goirc/client/connection_test.go

20 lines
445 B
Go
Raw Normal View History

2011-08-21 12:38:51 +00:00
package client
import "testing"
func setUp(t *testing.T) (*mockNetConn, *Conn) {
c := New("test", "test", "Testing IRC")
m := MockNetConn(t)
c.sock = m
c.Flood = true // Tests can take a while otherwise
c.postConnect()
return m, c
}
2011-08-22 22:23:29 +00:00
// Mock dispatcher to verify that events are triggered successfully
type mockDispatcher func(string, ...interface{})
func (d mockDispatcher) Dispatch(name string, ev ...interface{}) {
d(name, ev...)
}