You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fisher/test/url-from-path-links.fish

15 lines
270 B
Fish

set -l path $DIRNAME/.t-$TESTNAME-(random)
function -S setup
mkdir -p $path/foo
ln -s $path/foo $path/bar
end
function -S teardown
rm -rf $path
end
test "$TESTNAME - Follow symbolic links"
(readlink $path/bar) = (__fisher_url_from_path $path/bar)
end