aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/repository_test.rb
blob: 77967a58da7dc83944e2bb03170f98227002ba34 (plain)
1
2
3
4
5
6
7
8
9
10
require "testing_env"

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