Breaks for example subdir completions if there is a subdir whose name matches extensions in the current dir.
38 lines
456 B
Plaintext
38 lines
456 B
Plaintext
proc setup {} {
|
|
assert_bash_exec "export MANPATH=$::srcdirabs/fixtures/man"
|
|
save_env
|
|
}
|
|
|
|
|
|
proc teardown {} {
|
|
assert_env_unmodified {/OLDPWD/d}
|
|
}
|
|
|
|
|
|
setup
|
|
|
|
|
|
assert_complete "bar" "man b"
|
|
|
|
|
|
sync_after_int
|
|
|
|
|
|
assert_complete_dir oo.1 "man man1/f" $::srcdir/fixtures/man
|
|
|
|
|
|
sync_after_int
|
|
|
|
|
|
assert_complete "Bash::Completion" "man Bash::C"
|
|
|
|
|
|
sync_after_int
|
|
|
|
|
|
assert_complete_dir "man/quux.8" "man man/" $::srcdir/fixtures/man
|
|
sync_after_int
|
|
|
|
|
|
teardown
|