aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/uses_test.rb
blob: 2b15554179db168ab43fa3eb14ef3757d13d2d21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require "testing_env"

class IntegrationCommandTestUses < IntegrationCommandTestCase
  def test_uses
    setup_test_formula "foo"
    setup_test_formula "bar"
    setup_test_formula "baz", <<-EOS.undent
      url "https://example.com/baz-1.0"
      depends_on "bar"
    EOS

    assert_equal "", cmd("uses", "baz")
    assert_equal "baz", cmd("uses", "bar")
    assert_equal "bar\nbaz", cmd("uses", "--recursive", "foo")
  end
end