32 lines
828 B
Ruby
32 lines
828 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.8.2.tar.gz"
|
|
sha256 "0f2df311a536e625a72bff64c838e67c7b5032e6ea9edcdf32758303062b2f3b"
|
|
license "MIT"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "40d5c46e73b90a20ba13bc3bdfdfd3d9bfcbf3286c1d4d1e524fef64b87ffdb1"
|
|
end
|
|
|
|
depends_on "coreutils"
|
|
|
|
uses_from_macos "bc" => :test
|
|
|
|
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
|