aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2014-10-25 13:58:52 +0800
committerGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2014-10-26 08:50:28 +0800
commitab7af98dede422fbaf3b691e4c44e1e76e2fb18c (patch)
tree655d80e7f1c509197e5cfaf26fe25c32b3be974b /tests
parentb0e09303a6c9d49d917e811edb247dbacd23907e (diff)
expand: expand tilde to canonical paths
Work on #1133.
Diffstat (limited to 'tests')
-rw-r--r--tests/expansion.in12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/expansion.in b/tests/expansion.in
index a2225127..34662d48 100644
--- a/tests/expansion.in
+++ b/tests/expansion.in
@@ -80,3 +80,15 @@ echo $foo[d]
echo ()[1]
echo ()[d]
+
+# Test tilde expansion
+set tmpdir (mktemp -d)
+mkdir $tmpdir/realhome
+ln -s $tmpdir/realhome $tmpdir/linkhome
+set expandedtilde (env HOME=$tmpdir/linkhome ../fish -c 'echo ~')
+if test $expandedtilde != $tmpdir/realhome
+ echo '~ expands to' $expandedtilde ' - expected ' $tmpdir/realhome
+end
+unlink $tmpdir/linkhome
+rmdir $tmpdir/realhome
+rmdir $tmpdir