Skip to content

Commit

Permalink
lib/search: adjust spacing on test assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
gaelicWizard committed Sep 9, 2021
1 parent ecde8e0 commit 99f4a91
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions test/lib/search.bats
Original file line number Diff line number Diff line change
Expand Up @@ -34,42 +34,42 @@ function local_teardown {
@test "search: plugin base" {
export BASH_IT_SEARCH_USE_COLOR=false
run _bash-it-search-component 'plugins' 'base'
assert_line -n 0 ' plugins: base '
assert_line -n 0 ' plugins: base '
}

@test "search: git" {
run _bash-it-search 'git' --no-color
assert_line -n 0 ' aliases: git gitsvn '
assert_line -n 0 ' aliases: git gitsvn '
assert_line -n 1 -p ' plugins:'
for plugin in "autojump" "git" "gitstatus" "git-subrepo" "jgitflow" "jump"
do
echo $plugin
assert_line -n 1 -p $plugin
done
assert_line -n 2 ' completions: git git_flow git_flow_avh github-cli '
assert_line -n 2 ' completions: git git_flow git_flow_avh github-cli '
}

@test "search: ruby gem bundle rake rails" {
run _bash-it-search rails ruby gem bundler rake --no-color

assert_line -n 0 ' aliases: bundler rails '
assert_line -n 1 ' plugins: chruby chruby-auto rails ruby '
assert_line -n 2 ' completions: bundler gem rake '
assert_line -n 0 ' aliases: bundler rails '
assert_line -n 1 ' plugins: chruby chruby-auto rails ruby '
assert_line -n 2 ' completions: bundler gem rake '
}

@test "search: rails ruby gem bundler rake -chruby" {
run _bash-it-search rails ruby gem bundler rake -chruby --no-color

assert_line -n 0 ' aliases: bundler rails '
assert_line -n 1 ' plugins: rails ruby '
assert_line -n 2 ' completions: bundler gem rake '
assert_line -n 0 ' aliases: bundler rails '
assert_line -n 1 ' plugins: rails ruby '
assert_line -n 2 ' completions: bundler gem rake '
}

@test "search: @git" {
run _bash-it-search '@git' --no-color
assert_line -n 0 ' aliases: git '
assert_line -n 1 ' plugins: git '
assert_line -n 2 ' completions: git '
assert_line -n 0 ' aliases: git '
assert_line -n 1 ' plugins: git '
assert_line -n 2 ' completions: git '
}

@test "search: @git --enable / --disable" {
Expand All @@ -82,7 +82,7 @@ function local_teardown {
run _bash-it-search '@git' --disable --no-color
run _bash-it-search '@git' --no-color

assert_line -n 0 ' aliases: git '
assert_line -n 0 ' aliases: git '
assert_line -n 2 ' completions: git '
assert_line -n 0 ' aliases: git '
assert_line -n 1 ' plugins: git '
assert_line -n 2 ' completions: git '
}

0 comments on commit 99f4a91

Please sign in to comment.