28 lines
683 B
Ruby
28 lines
683 B
Ruby
class BatsCore < Formula
|
|
desc "Bash Automated Testing System"
|
|
homepage "https://github.com/bats-core/bats-core"
|
|
url "https://github.com/bats-core/bats-core/archive/v1.3.0.tar.gz"
|
|
sha256 "1d5075e6e712dc15fbe818b9d88605dbc8908269857f054b046321a4b9cba089"
|
|
license "MIT"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "coreutils"
|
|
|
|
conflicts_with "bats", because: "both install `bats` executables"
|
|
|
|
def install
|
|
system "./install.sh", prefix
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.sh").write <<~EOS
|
|
@test "addition using bc" {
|
|
result="$(echo 2+2 | bc)"
|
|
[ "$result" -eq 4 ]
|
|
}
|
|
EOS
|
|
assert_match "addition", shell_output("#{bin}/bats test.sh")
|
|
end
|
|
end
|