blob: f3015d8ad71d05113667bcee0ecc41ad098bb569 (
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 }
"ERROR :Closing connection"
}
|