aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/cask/cli/home_spec.rb
blob: 8960d2acc01416caef07d3b185ede034c83ddee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require_relative "shared_examples/invalid_option"

describe Hbc::CLI::Home, :cask do
  before do
    allow(described_class).to receive(:open_url)
  end

  it_behaves_like "a command that handles invalid options"

  it "opens the homepage for the specified Cask" do
    expect(described_class).to receive(:open_url).with("http://example.com/local-caffeine")
    described_class.run("local-caffeine")
  end

  it "works for multiple Casks" do
    expect(described_class).to receive(:open_url).with("http://example.com/local-caffeine")
    expect(described_class).to receive(:open_url).with("http://example.com/local-transmission")
    described_class.run("local-caffeine", "local-transmission")
  end

  it "opens the project page when no Cask is specified" do
    expect(described_class).to receive(:open_url).with("https://caskroom.github.io/")
    described_class.run
  end
end