summaryrefslogtreecommitdiff
path: root/test/lib/completions/cd.exp
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/completions/cd.exp')
-rw-r--r--test/lib/completions/cd.exp10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/lib/completions/cd.exp b/test/lib/completions/cd.exp
index d4c06d9d..58233575 100644
--- a/test/lib/completions/cd.exp
+++ b/test/lib/completions/cd.exp
@@ -12,7 +12,7 @@ setup
set test "Tab should complete"
-assert_complete {"bar bar.d/" foo.d/} "cd fixture1/" $test
+assert_complete {"bar bar.d/" foo.d/} "cd fixtures/shared/default/" $test
sync_after_int
@@ -20,13 +20,13 @@ sync_after_int
set test "Tab should complete cd at cursor position"
# Try completion
-set cmd "cd fixture1/foo"
+set cmd "cd fixtures/shared/default/foo"
append cmd \002\002\002; # \002 = ^B = Move cursor left in bash emacs mode
#append cmd \033\0133D; # Escape-[-D = Cursor left
send "$cmd\t"
expect {
- -re "cd fixture1/foo\b\b\b\r\n(\.svn/ +|)bar bar.d/ +foo.d/ *(\.svn/ *|)\r\n/@cd fixture1/foo\b\b\b$" { pass "$test" }
- -re "^cd fixture1/foo\b\b\bfoo.d/foo\b\b\b$" { fail "$test: Wrong cursor position" }
+ -re "cd fixtures/shared/default/foo\b\b\b\r\n(\.svn/ +|)bar bar.d/ +foo.d/ *(\.svn/ *|)\r\n/@cd fixtures/shared/default/foo\b\b\b$" { pass "$test" }
+ -re "^cd fixtures/shared/default/foo\b\b\bfoo.d/foo\b\b\b$" { fail "$test: Wrong cursor position" }
-re /@ { unresolved "$test at prompt" }
default { unresolved "$test" }
}; # expect
@@ -38,7 +38,7 @@ sync_after_int
set test "Tab should complete CDPATH"
# Set CDPATH
assert_bash_exec "CDPATH=\$PWD";
-assert_complete "fixture1/foo.d/" "cd fixture1/fo" $test
+assert_complete "fixtures/shared/default/foo.d/" "cd fixtures/shared/default/fo" $test
sync_after_int
# Reset CDPATH
assert_bash_exec "unset CDPATH"