mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
18 lines
313 B
Fish
18 lines
313 B
Fish
|
set -l path $DIRNAME/.t-$TESTNAME-(random)
|
||
|
|
||
|
function -S setup
|
||
|
mkdir -p $path
|
||
|
|
||
|
set -g fisher_key_bindings $path/key_bindings.fish
|
||
|
|
||
|
echo echo ok > $fisher_key_bindings
|
||
|
end
|
||
|
|
||
|
function -S teardown
|
||
|
rm -rf $path
|
||
|
end
|
||
|
|
||
|
test "$TESTNAME - Evaluate \$fisher_key_bindings"
|
||
|
(__fisher_key_bindings) = ok
|
||
|
end
|