summary refs log tree commit diff
path: root/src/testsuite/connect-test.e
blob: 662f5f7a580f6b266be2aa5161a0b7a0f05d95ca (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 localhost 6789
expect {
	timeout { exit 1 }
	"Connected"
}

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

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