mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
12 lines
408 B
Fish
12 lines
408 B
Fish
|
set -l manifest $DIRNAME/fixtures/manifest
|
||
|
|
||
|
set -l plugins foo bar baz norf zerg quux hoge foobar fred thud chomp
|
||
|
|
||
|
test "$TESTNAME - Parse fishfile and retrieve plugin names with fisher --list=fishfile"
|
||
|
|
||
|
# We use fisher --list=<file> to parse <file> and then extract the plugin's name
|
||
|
# as it will be used by the CLI. See also `test/name.fish`.
|
||
|
|
||
|
(fisher --list=$manifest/fishfile) = $plugins
|
||
|
end
|