brew/Library/Homebrew/test/test_cmd_info.rb

20 lines
761 B
Ruby
Raw Normal View History

2016-01-19 23:53:28 +01:00
require "testing_env"
require "cmd/info"
require "formula"
class InfoCommandTests < Homebrew::TestCase
def test_github_remote_path
remote = "https://github.com/Homebrew/homebrew"
assert_equal "https://github.com/Homebrew/homebrew/blob/master/Formula/git.rb",
Homebrew.github_remote_path(remote, "Formula/git.rb")
assert_equal "https://github.com/Homebrew/homebrew/blob/master/Formula/git.rb",
Homebrew.github_remote_path("#{remote}.git", "Formula/git.rb")
assert_equal "https://github.com/user/repo/blob/master/foo.rb",
Homebrew.github_remote_path("git@github.com:user/repo", "foo.rb")
assert_equal "https://mywebsite.com/foo/bar.rb",
Homebrew.github_remote_path("https://mywebsite.com", "foo/bar.rb")
end
end