summaryrefslogtreecommitdiff
path: root/test/tests/link-glob-ambiguous.bash
diff options
context:
space:
mode:
authorAnish Athalye <me@anishathalye.com>2018-04-13 08:49:09 -0400
committerAnish Athalye <me@anishathalye.com>2018-04-13 08:49:09 -0400
commit2f4cc0d9cb70235e7c5820dc4e7dd89b1d375fb5 (patch)
treeb2545b0ca9eb6a7a141a898b0a9d15896210a90a /test/tests/link-glob-ambiguous.bash
parenta517c4c5d0b6bdd8ab3a62f3c6c3f38837354bde (diff)
parent972e80f18850d0cd45f22d2a4c14320f3cd204c6 (diff)
Merge branch 'glob'
Diffstat (limited to 'test/tests/link-glob-ambiguous.bash')
-rw-r--r--test/tests/link-glob-ambiguous.bash45
1 files changed, 45 insertions, 0 deletions
diff --git a/test/tests/link-glob-ambiguous.bash b/test/tests/link-glob-ambiguous.bash
new file mode 100644
index 0000000..7e23348
--- /dev/null
+++ b/test/tests/link-glob-ambiguous.bash
@@ -0,0 +1,45 @@
+test_description='link glob ambiguous'
+. '../test-lib.bash'
+
+test_expect_success 'setup' '
+mkdir ${DOTFILES}/foo
+'
+
+test_expect_failure 'run 1' '
+run_dotbot <<EOF
+- link:
+ ~/foo/:
+ path: foo
+ glob: true
+EOF
+'
+
+test_expect_failure 'test 1' '
+test -d ~/foo
+'
+
+test_expect_failure 'run 2' '
+run_dotbot <<EOF
+- link:
+ ~/foo/:
+ path: foo/
+ glob: true
+EOF
+'
+
+test_expect_failure 'test 2' '
+test -d ~/foo
+'
+
+test_expect_success 'run 3' '
+run_dotbot <<EOF
+- link:
+ ~/foo:
+ path: foo
+ glob: true
+EOF
+'
+
+test_expect_success 'test 3' '
+test -d ~/foo
+'