summary refs log tree commit diff
path: root/src/testsuite/connect-test.e
blob: 49ce70c12685d258aa5ede6c4c2d676eae920126 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# $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-