]> arthur.barton.de Git - ngircd-alex.git/blob - src/testsuite/connect-test.e
662f5f7a580f6b266be2aa5161a0b7a0f05d95ca
[ngircd-alex.git] / src / testsuite / connect-test.e
1 # ngIRCd test suite
2 # Server connect test
3
4 spawn telnet localhost 6789
5 expect {
6         timeout { exit 1 }
7         "Connected"
8 }
9
10 send "oper\r"
11 expect {
12         timeout { exit 1 }
13         "451"
14 }
15
16 send "quit\r"
17 expect {
18         timeout { exit 1 }
19         "Connection closed"
20 }