2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-02-17 15:26:18 +00:00
|
|
|
describe "brew services", :integration_test, :needs_network do
|
2017-02-23 06:07:24 +01:00
|
|
|
it "allows controlling services" do
|
|
|
|
setup_remote_tap "homebrew/services"
|
|
|
|
|
|
|
|
expect { brew "services", "list" }
|
2022-01-21 13:52:22 +00:00
|
|
|
.to not_to_output.to_stderr
|
2017-02-23 06:07:24 +01:00
|
|
|
.and not_to_output.to_stdout
|
|
|
|
.and be_a_success
|
|
|
|
end
|
|
|
|
end
|