brew/Library/Homebrew/test/cmd/services_spec.rb

14 lines
345 B
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: false
# frozen_string_literal: true
2018-09-14 16:56:23 +02:00
describe "brew services", :integration_test, :needs_macos, :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" }
.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