51b3e20ebc
Instead of writing `}; # if', write just `}' as was discussed here: http://www.mail-archive.com/bash-completion-devel@lists.alioth.debian.org/msg01815.html
29 lines
332 B
Plaintext
29 lines
332 B
Plaintext
proc setup {} {
|
|
save_env
|
|
}
|
|
|
|
|
|
proc teardown {} {
|
|
assert_env_unmodified
|
|
}
|
|
|
|
|
|
setup
|
|
|
|
|
|
set test "Tab should complete"
|
|
# Try completion
|
|
set cmd "gzip "
|
|
send "$cmd\t"
|
|
expect {
|
|
-re "^$cmd\r\n.*$cmd$" { pass "$test" }
|
|
-re /@ { unresolved "$test at prompt" }
|
|
-re eof { unresolved "eof" }
|
|
}
|
|
|
|
|
|
sync_after_int
|
|
|
|
|
|
teardown
|