1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-02-01 01:59:09 +00:00
ngircd/src/testsuite/connect-test.e

22 lines
261 B
Plaintext
Raw Normal View History

2002-09-09 10:16:24 +00:00
# $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-