homebrew-core/Formula/git-url-sub.rb
Baptiste Fontaine 5c14130908 git-url-sub: head & test added
Closes Homebrew/homebrew#39656.

Signed-off-by: Xu Cheng <xucheng@me.com>
2015-05-12 14:53:46 +08:00

18 lines
564 B
Ruby

class GitUrlSub < Formula
homepage "https://gosuri.github.io/git-url-sub"
url "https://github.com/gosuri/git-url-sub/archive/1.0.1.tar.gz"
sha256 "6c943b55087e786e680d360cb9e085d8f1d7b9233c88e8f2e6a36f8e598a00a9"
head "https://github.com/gosuri/git-url-sub.git"
def install
system "make", "install", "PREFIX=#{prefix}"
end
test do
system "git", "init"
system "git", "remote", "add", "origin", "foo"
system "#{bin}/git-url-sub", "-c", "foo", "bar"
assert_match(/origin\s+bar \(fetch\)/, shell_output("git remote -v"))
end
end