[BACK]Return to opless-channel-test.e CVS log [TXT][DIR] Up to [local] / ircnowd / src / testsuite

File: [local] / ircnowd / src / testsuite / opless-channel-test.e (download)

Revision 1.1, Thu May 16 11:07:06 2024 UTC (4 months ago) by tomglok
Branch point for: MAIN

Initial revision

# ngIRCd test suite
# Op-less channel test

spawn telnet 127.0.0.1 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 }
       "@* JOIN :+Channel"
}

send "mode +Channel +t\r"
expect {
       timeout { exit 1 }
       "477"
}

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