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

class IntegrationCommandTestMissing < IntegrationCommandTestCase
  def test_missing
    setup_test_formula "foo"
    setup_test_formula "bar"

    (HOMEBREW_CELLAR/"bar/1.0").mkpath
    assert_match "foo", cmd("missing")
  end
end