mirror of
https://github.com/osmarks/ngircd.git
synced 2025-02-01 01:59:09 +00:00
22 lines
261 B
Plaintext
22 lines
261 B
Plaintext
|
# $Id: connect-test.e,v 1.1 2002/09/09 10:16:24 alex Exp $
|
||
|
|
||
|
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"
|
||
|
}
|
||
|
|
||
|
# -eof-
|