55bc44b035
Fixed `assert_complete()' to remove an optional (partial) argument from `cmd' when expecting `cmd + longestCommonPrefix'. Added `prompt' argument to procs `assert_bash_exec()' & `sync_after_int()'
21 lines
177 B
Plaintext
21 lines
177 B
Plaintext
proc setup {} {
|
|
save_env
|
|
}; # setup()
|
|
|
|
|
|
proc teardown {} {
|
|
assert_env_unmodified
|
|
}; # teardown()
|
|
|
|
|
|
setup
|
|
|
|
|
|
assert_complete_any "enscript --"
|
|
|
|
|
|
sync_after_int
|
|
|
|
|
|
teardown
|