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

17 lines
450 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2024-04-02 11:43:41 -07:00
require "cmd/shared_examples/args_parse"
RSpec.describe "Homebrew::Cmd::Services", :integration_test, :needs_network do
before { setup_remote_tap "homebrew/services" }
2017-02-23 06:07:24 +01:00
2024-04-02 11:43:41 -07:00
it_behaves_like "parseable arguments", command_name: "services"
it "allows controlling services" do
2017-02-23 06:07:24 +01:00
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