1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# ngIRCd test suite # Server connect test spawn telnet 127.0.0.1 6789 expect { timeout { exit 1 } "Connected" } send "oper\r" expect { timeout { exit 1 } "451" } send "quit\r" expect { timeout { exit 1 } "Connection closed" }