mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00

We have a few tests that are intermittently flaky. Let's try this to see if we can get them a bit more reliable.
11 lines
370 B
Ruby
11 lines
370 B
Ruby
describe "brew services", :integration_test, :needs_macos, :needs_network, retry: 3 do
|
|
it "allows controlling services" do
|
|
setup_remote_tap "homebrew/services"
|
|
|
|
expect { brew "services", "list" }
|
|
.to output("Warning: No services available to control with `brew services`\n").to_stderr
|
|
.and not_to_output.to_stdout
|
|
.and be_a_success
|
|
end
|
|
end
|