ad123d1b63
They need minor modifications/upgrading and can then be moved to the directory without the '_to_review' suffix.
27 lines
331 B
Plaintext
27 lines
331 B
Plaintext
proc setup {} {
|
|
}; # setup()
|
|
|
|
|
|
proc teardown {} {
|
|
}; # teardown()
|
|
|
|
|
|
setup
|
|
|
|
|
|
set test "Tab should complete"
|
|
# Try completion
|
|
set cmd "rmlist -"
|
|
send "$cmd\t"
|
|
expect {
|
|
-re "^$cmd\r\n.*$cmd$" { pass "$test" }
|
|
-re /@ { unresolved "$test at prompt" }
|
|
-re eof { unresolved "eof" }
|
|
}; # expect
|
|
|
|
|
|
sync_after_int
|
|
|
|
|
|
teardown
|