fisher/test/config.fish
Jorge Bucaran 4b15cf374f
Ahoy! We are getting close to 0.8.0
* 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.
2016-02-14 13:17:47 +09:00

44 lines
1.1 KiB
Fish

set -l path $DIRNAME/.t-$TESTNAME-(random)
function -S setup
mkdir -p $path/conf.d
echo "echo foo" > $path/conf.d/foo.fish
set -g fisher_config $path
source $fisher_home/config.fish > /dev/null
end
function -S teardown
rm -rf $path
end
test "$TESTNAME - Do not redefine \$fisher_config"
$fisher_config = $path
end
test "$TESTNAME - Define cache in \$fisher_config/cache (default)"
$fisher_cache = $path/cache
end
test "$TESTNAME - Define fishfile in \$fisher_config/fishfile (default)"
$fisher_file = $path/fishfile
end
test "$TESTNAME - Define key bindings in \$fisher_config/key_bindings.fish (default)"
$fisher_binds = $path/key_bindings.fish
end
test "$TESTNAME - Add Fisherman config/functions to the head of \$fish_function_path"
$path/functions = $fish_function_path[1]
end
test "$TESTNAME - Add Fisherman config/completions to the head of \$fish_complete_path"
$path/completions = $fish_complete_path
end
test "$TESTNAME - Evaluate any <*.fish> files inside conf.d during shell start"
foo = (source $fisher_home/config.fish)
end