aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/tap_new_test.rb
blob: 261a334f0f7870219e0d714d0dfd79116e95f290 (plain)
1
2
3
4
5
6
7
8
9
require "testing_env"

class IntegrationCommandTestTapNew < IntegrationCommandTestCase
  def test_tap_readme
    assert_equal "", cmd("tap-new", "homebrew/foo", "--verbose")
    readme = HOMEBREW_LIBRARY/"Taps/homebrew/homebrew-foo/README.md"
    assert readme.exist?, "The README should be created"
  end
end