aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_repository.rb
blob: 2029876ad7e56306e6ccbbaab181c191ce7be08a (plain)
1
2
3
4
5
6
7
8
9
10
require "helper/integration_command_test_case"

class IntegrationCommandTestRepository < IntegrationCommandTestCase
  def test_repository
    assert_match HOMEBREW_REPOSITORY.to_s,
                 cmd("--repository")
    assert_match "#{HOMEBREW_LIBRARY}/Taps/foo/homebrew-bar",
                 cmd("--repository", "foo/bar")
  end
end