mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-03 15:40:27 +00:00
12 lines
416 B
Fish
12 lines
416 B
Fish
set -l manifest $DIRNAME/fixtures/manifest
|
|
|
|
set -l plugins foo bar baz norf zerg quux hoge foobar fred thud chomp boo loo
|
|
|
|
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
|