95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
14 lines
380 B
Ruby
14 lines
380 B
Ruby
class Shunit2 < Formula
|
|
desc "xUnit unit testing framework for Bourne-based shell scripts"
|
|
homepage "https://code.google.com/p/shunit2/"
|
|
url "https://shunit2.googlecode.com/files/shunit2-2.1.6.tgz"
|
|
sha256 "65a313a76fd5cc1c58c9e19fbc80fc0e418a4cbfbd46d54b35ed5b6e0025d4ee"
|
|
|
|
def install
|
|
bin.install "src/shunit2"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/shunit2"
|
|
end
|
|
end
|