blob: 7f3ab48e1bef8ad92a2be5411da81361bab73c03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
class GitTest < Formula
homepage "https://github.com/spotify/git-test"
url "https://github.com/spotify/git-test/archive/v1.0.1.tar.gz"
sha256 "1273d97644edf3690cc0310a1f6f33856f83bf736599c54150db7a7ad9e43983"
def install
share.install "test.sh"
bin.install "git-test"
man1.install "git-test.1"
end
test do
system "git", "init"
ln_s "#{bin}/git-test", testpath
cp "#{share}/test.sh", testpath
chmod 0755, "test.sh"
system "git", "add", "test.sh"
system "git", "commit", "-m", "initial commit"
ENV["TERM"] = "xterm"
system "#{bin}/git-test", "-v", "HEAD", "--verify='./test.sh'"
end
end
|