summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/tests/link-glob-ambiguous.bash20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/tests/link-glob-ambiguous.bash b/test/tests/link-glob-ambiguous.bash
index 97d42cd..7e23348 100644
--- a/test/tests/link-glob-ambiguous.bash
+++ b/test/tests/link-glob-ambiguous.bash
@@ -2,44 +2,44 @@ test_description='link glob ambiguous'
. '../test-lib.bash'
test_expect_success 'setup' '
-mkdir ${DOTFILES}/bin
+mkdir ${DOTFILES}/foo
'
test_expect_failure 'run 1' '
run_dotbot <<EOF
- link:
- ~/bin/:
- path: bin
+ ~/foo/:
+ path: foo
glob: true
EOF
'
test_expect_failure 'test 1' '
-test -d ~/bin
+test -d ~/foo
'
test_expect_failure 'run 2' '
run_dotbot <<EOF
- link:
- ~/bin/:
- path: bin/
+ ~/foo/:
+ path: foo/
glob: true
EOF
'
test_expect_failure 'test 2' '
-test -d ~/bin
+test -d ~/foo
'
test_expect_success 'run 3' '
run_dotbot <<EOF
- link:
- ~/bin:
- path: bin
+ ~/foo:
+ path: foo
glob: true
EOF
'
test_expect_success 'test 3' '
-test -d ~/bin
+test -d ~/foo
'