aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/cmd/services_spec.rb
blob: c456fea17420ef86c17ba7b85a7d7284a33d17b7 (plain)
1
2
3
4
5
6
7
8
9
10
describe "brew services", :integration_test, :needs_macos, :needs_official_cmd_taps 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