mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-01 21:40:18 +00:00
32 lines
700 B
Fish
32 lines
700 B
Fish
set -l path $DIRNAME/.t-$TESTNAME-(random)
|
|
|
|
function -S setup
|
|
mkdir -p $path $path/void
|
|
|
|
printf "%s\n" foo bar > $path/bundle
|
|
printf "%s\n" baz norf > $path/fishfile
|
|
|
|
function fisher_install
|
|
set -l count 0
|
|
|
|
while read -l plugin
|
|
set count (math $count + 1)
|
|
end
|
|
|
|
echo "Aye! $count plugin/s installed."
|
|
end
|
|
end
|
|
|
|
function -S teardown
|
|
rm -rf $path
|
|
functions -e fisher_install
|
|
end
|
|
|
|
test "$TESTNAME - Install dependencies from one or more bundle/fishfile files"
|
|
(__fisher_deps_install $path ^ /dev/null) = 4
|
|
end
|
|
|
|
test "$TESTNAME - Print 0 to indicate no dependencies were installed"
|
|
(__fisher_deps_install $path/void) = 0
|
|
end
|