diff options
| author | Misty De Meo | 2013-10-14 14:55:54 -0700 |
|---|---|---|
| committer | Misty De Meo | 2013-10-14 14:55:54 -0700 |
| commit | 046b147a97e88cbb39998f8531fa29c82d0e192c (patch) | |
| tree | 33bc1852f0853fd22cdf1448abeb337c3c596557 | |
| parent | 0e171305a8603ae2671c701701e2ae371f86fd98 (diff) | |
| download | homebrew-046b147a97e88cbb39998f8531fa29c82d0e192c.tar.bz2 | |
z80dasm: add test
| -rw-r--r-- | Library/Formula/z80dasm.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/z80dasm.rb b/Library/Formula/z80dasm.rb index e19d15cb4..a84b993d8 100644 --- a/Library/Formula/z80dasm.rb +++ b/Library/Formula/z80dasm.rb @@ -7,7 +7,10 @@ class Z80dasm < Formula def install system "./configure", "--prefix=#{prefix}" - system "make", "install" end + + test do + system bin/'z80dasm', '-V' + end end |
