brew/Library/Homebrew/test/home_test.rb
2016-11-16 23:52:38 +01:00

13 lines
354 B
Ruby

require "testing_env"
class IntegrationCommandTestHome < IntegrationCommandTestCase
def test_home
setup_test_formula "testball"
assert_equal HOMEBREW_WWW,
cmd("home", "HOMEBREW_BROWSER" => "echo")
assert_equal Formula["testball"].homepage,
cmd("home", "testball", "HOMEBREW_BROWSER" => "echo")
end
end