about summary refs log tree commit diff
path: root/src/testsuite/channel-test.e
blob: ce14613c5f46bcce34a689544c68d9a8153f6cc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# $Id: channel-test.e,v 1.1 2002/09/09 10:16:24 alex Exp $

spawn telnet localhost 6789
expect {
	timeout { exit 1 }
	"Connected"
}

send "nick nick\r"
send "user user . . :User\r"
expect {
	timeout { exit 1 }
	"376"
}

send "join #channel\r"
expect {
	timeout { exit 1 }
	":nick!~user@* JOIN :#channel"
}
expect {
	timeout { exit 1 }
	"366"
}

send "part #channel\r"
expect {
	timeout { exit 1 }
	":nick!~user@* PART #channel :nick"
}

send "quit\r"
expect {
	timeout { exit 1 }
	"Connection closed"
}

# -eof-