summary refs log tree commit diff
path: root/src/testsuite/connect-test.e
blob: b51be0dbdb1aad0559c822fd6e675999f470413d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# ngIRCd test suite
# Server connect test

spawn telnet 127.0.0.1 6789
expect {
	timeout { exit 1 }
	"Connected"
}

send "oper\r"
expect {
	timeout { exit 1 }
	"451"
}

send "quit\r"
expect {
	timeout { exit 1 }
	"Connection closed"
}