mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-05 12:00:17 +00:00
4b15cf374f
* Move AUTHORS -> THANKS and remove automatic generation. THANKS is more sensible than AUTHORS. CREDITS was second best. Also, after perusing similar files in other projects I noticed some entries lacking a valid email address and decided fow now this file should be curated manually to make sure each entry contains a useful link. This allows users who have contributed to the project ways other than committing code to be added to the list as well. * Rename wait -> spin. * Remove extra padding in links. (Cosmetic) * Update to reflect API refactorings. * Fix bug causing brackets to show up in description. * Implement using spin function. * __fisher_gist_to_name uses curl to query the GitHub API which will return a JSON stream even if the Gist could not be found. So, it's not possible to determine whether we failed or not using our spin function and actually need to check the returned string to see if it contains a valid name or not. * Let git pull write errors to stderr. * Use new internal __fisher_spin. * Extract spin to independent / external module and tweak Makefile to better integrate with new install process.
25 lines
660 B
Fish
25 lines
660 B
Fish
set -l path $DIRNAME/.t-$TESTNAME-(random)
|
|
set -l fixtures $DIRNAME/fixtures/key-bindings/update
|
|
|
|
function -S setup
|
|
mkdir -p $path
|
|
|
|
set -g fisher_binds $path/key_bindings.fish
|
|
|
|
__fisher_key_bindings_enable \
|
|
norf $path/norf/norf.fish \
|
|
< $fixtures/fish_user_key_bindings_function.fish
|
|
end
|
|
|
|
function -S teardown
|
|
rm -rf $path
|
|
end
|
|
|
|
test "$TESTNAME - Create fish_user_key_bindings calling to __fisher_key_bindings"
|
|
(functions fish_user_key_bindings | xargs) = (cat $path/norf/norf.fish | xargs)
|
|
end
|
|
|
|
test "$TESTNAME - Add plugin bindingss to \$fisher_binds"
|
|
(cat $fisher_binds | xargs) = "##norf## foo bar baz ##norf##"
|
|
end
|