brew/Library/Homebrew/test/cmd/info_spec.rb
Mike McQuaid 60046ac41c
Merge pull request #8893 from whoiswillma/william/integrate-brew-info
cmd/info: Add support for casks in brew info
2020-10-26 11:59:53 +00:00

49 lines
1.4 KiB
Ruby

# typed: false
# frozen_string_literal: true
require "cmd/info"
require "cmd/shared_examples/args_parse"
describe "Homebrew.info_args" do
it_behaves_like "parseable arguments"
end
describe "brew info", :integration_test do
it "prints as json with the --json=v1 flag" do
setup_test_formula "testball"
expect { brew "info", "testball", "--json=v1" }
.to output(a_json_string).to_stdout
.and not_to_output.to_stderr
.and be_a_success
end
it "prints as json with the --json=v2 flag" do
setup_test_formula "testball"
expect { brew "info", "testball", "--json=v2" }
.to output(a_json_string).to_stdout
.and not_to_output.to_stderr
.and be_a_success
end
end
describe Homebrew do
let(:remote) { "https://github.com/Homebrew/homebrew-core" }
specify "::github_remote_path" do
expect(subject.github_remote_path(remote, "Formula/git.rb"))
.to eq("https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/git.rb")
expect(subject.github_remote_path("#{remote}.git", "Formula/git.rb"))
.to eq("https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/git.rb")
expect(subject.github_remote_path("git@github.com:user/repo", "foo.rb"))
.to eq("https://github.com/user/repo/blob/HEAD/foo.rb")
expect(subject.github_remote_path("https://mywebsite.com", "foo/bar.rb"))
.to eq("https://mywebsite.com/foo/bar.rb")
end
end