2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2025-02-26 13:26:37 +01:00
|
|
|
require "cmd/services"
|
2024-04-02 11:43:41 -07:00
|
|
|
require "cmd/shared_examples/args_parse"
|
|
|
|
|
2025-03-13 20:13:13 +01:00
|
|
|
RSpec.describe Homebrew::Cmd::Services, :needs_daemon_manager do
|
2025-02-26 13:26:37 +01:00
|
|
|
it_behaves_like "parseable arguments"
|
2017-02-23 06:07:24 +01:00
|
|
|
|
2025-02-26 13:26:37 +01:00
|
|
|
it "allows controlling services", :integration_test do
|
2017-02-23 06:07:24 +01:00
|
|
|
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
|