homebrew-core/Formula/psgrep.rb
Mike Naberezny b2b37c6ee0 psgrep: add test
Closes Homebrew/homebrew#26552.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-02-09 21:20:32 +00:00

20 lines
449 B
Ruby

require 'formula'
class Psgrep < Formula
homepage 'http://code.google.com/p/psgrep/'
url 'http://psgrep.googlecode.com/files/psgrep-1.0.6.tar.bz2'
sha1 'fe1102546971358a5eff2cff613d70ee63395444'
head 'http://psgrep.googlecode.com/hg/'
def install
bin.install "psgrep"
man1.install "psgrep.1"
end
test do
output = `#{bin}/psgrep #{Process.pid}`
assert output.include?($0)
assert_equal 0, $?.exitstatus
end
end