homebrew-core/Formula/cloc.rb
Baptiste Fontaine 65cc024f60 cloc: test added
Closes Homebrew/homebrew#36528.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-04 13:00:49 +00:00

20 lines
474 B
Ruby

class Cloc < Formula
homepage "http://cloc.sourceforge.net/"
url "https://downloads.sourceforge.net/project/cloc/cloc/v1.62/cloc-1.62.pl"
sha1 "78f6123c967f9b142f77cba48decd11d56ab6c38"
def install
bin.install "cloc-#{version}.pl" => "cloc"
end
test do
(testpath/"test.c").write <<-EOS.undent
#include <stdio.h>
int main(void) {
return 0;
}
EOS
assert_match "1,C,0,0,4", shell_output("#{bin}/cloc --csv .")
end
end