Add a test for the legacy Connect function.
This commit is contained in:
parent
d640995c66
commit
7acded32b2
@ -203,6 +203,20 @@ func TestConnIPv6(t *testing.T) {
|
||||
c.Quit()
|
||||
}
|
||||
|
||||
// TestConnect tests the legacy Connect function
|
||||
func TestConnect(t *testing.T) {
|
||||
if testing.Short() {
|
||||
t.Skip("skipping test in short mode.")
|
||||
}
|
||||
|
||||
c, err := Connect("localhost:21")
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
c.Quit()
|
||||
}
|
||||
|
||||
func TestTimeout(t *testing.T) {
|
||||
if testing.Short() {
|
||||
t.Skip("skipping test in short mode.")
|
||||
|
Loading…
Reference in New Issue
Block a user