Skip to content

Commit

Permalink
Try 'rubocop -a'.
Browse files Browse the repository at this point in the history
  • Loading branch information
ascherer committed Dec 24, 2024
1 parent 2c5e5b5 commit b4162b2
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions Library/Homebrew/test/cmd/list_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,28 +13,29 @@
formulae.each do |f|
(HOMEBREW_CELLAR/f/"1.0/somedir").mkpath
end
# casks.each do |f|
# (HOMEBREW_CELLAR/"../Caskroom"/f/"42.0/somedir").mkpath
# end
# casks.each do |f|
# (HOMEBREW_CELLAR/"../Caskroom"/f/"42.0/somedir").mkpath
# end

expect { brew "list", "--formula" }
.to output("#{formulae.sort.join("\n")}\n").to_stdout
.and not_to_output.to_stderr
.and be_a_success

# expect { brew "list", "--cask" }
# .to output("#{casks.sort.join("\n")}\n").to_stdout
# .and not_to_output.to_stderr
# .and be_a_success
# expect { brew "list", "--cask" }
# .to output("#{casks.sort.join("\n")}\n").to_stdout
# .and not_to_output.to_stderr
# .and be_a_success

# expect { brew "list", "--cask", "--version" }
# .to output("#{casks.sort.map{|name| name + " 42.0\n"}}\n").to_stdout
# .and not_to_output.to_stderr
# .and be_a_success
# expect { brew "list", "--cask", "--version" }
# .to output("#{casks.sort.map{|name| name + " 42.0\n"}}\n").to_stdout
# .and not_to_output.to_stderr
# .and be_a_success

expect { brew "list", "--version" }
.to output("#{formulae.sort.map{|name| name + " 1.0"}.join("\n")}\n").to_stdout # +
# "#{casks.sort.map{|name| name + " 42.0"}.join("\n")}\n").to_stdout
# .to output("#{formulae.sort.map { |name| "#{name} 1.0" }.join("\n")}\n" +
# "#{casks.sort.map { |name| "#{name} 42.0" }.join("\n")}\n").to_stdout
.to output("#{formulae.sort.map { |name| "#{name} 1.0" }.join("\n")}\n").to_stdout # +
.and not_to_output.to_stderr
.and be_a_success
end
Expand Down

0 comments on commit b4162b2

Please sign in to comment.