homebrew-core/Formula/yeti.rb
Baptiste Fontaine edbb852a32 yeti: test added
Closes Homebrew/homebrew#35595.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-03-03 12:12:06 +00:00

20 lines
503 B
Ruby

class Yeti < Formula
homepage "https://mth.github.io/yeti/"
url "https://github.com/mth/yeti/archive/v0.9.9.tar.gz"
sha1 "d4b3fee9e9e1c117f1a73b147695a24a217c2658"
head "https://github.com/mth/yeti.git"
depends_on :ant => :build
depends_on :java => "1.7"
def install
system "ant", "jar"
libexec.install "yeti.jar"
bin.write_jar_script libexec/"yeti.jar", "yeti", "-server"
end
test do
assert_equal "3\n", shell_output("#{bin}/yeti -e 'do x: x+1 done 2'")
end
end