homebrew-core/Formula/bar.rb
Dominyk Tiller 0a63558d16 bar: modernise and add test
Closes Homebrew/homebrew#35842.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-20 16:53:33 +01:00

15 lines
390 B
Ruby

class Bar < Formula
homepage "http://www.theiling.de/projects/bar.html"
url "http://www.theiling.de/downloads/bar-1.4-src.tar.bz2"
sha1 "00b55ca1d52ca6ed099937692697c2257833c73c"
def install
bin.install "bar"
end
test do
(testpath/"test1").write "pumpkin"
(testpath/"test2").write "latte"
assert_match /latte/, shell_output("#{bin}/bar test1 test2")
end
end