goirc/client/connection_test.go

13 lines
241 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
}