aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-03-25 13:35:21 -0500
committerJack Nagel2013-03-26 00:02:44 -0500
commit4b80bd0d615d390e9ca8e1d257c5e812ff687619 (patch)
treedf9db6f4b717aaa58509815ab418493a4352ad76 /Library/Formula
parent20d8dc809c53f594184a8b38c54eeea54b247945 (diff)
downloadhomebrew-4b80bd0d615d390e9ca8e1d257c5e812ff687619.tar.bz2
tinysvm: fix test
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/tinysvm.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/tinysvm.rb b/Library/Formula/tinysvm.rb
index 02ab5de4c..9ee041b14 100644
--- a/Library/Formula/tinysvm.rb
+++ b/Library/Formula/tinysvm.rb
@@ -24,9 +24,9 @@ class Tinysvm < Formula
system "make install"
end
- def test
- system "#{bin}/svm_learn --help"
- system "#{bin}/svm_classify --help"
- system "#{bin}/svm_model --help"
+ test do
+ system "#{bin}/svm_learn", "--help"
+ system "#{bin}/svm_classify", "--help"
+ system "#{bin}/svm_model", "--help"
end
end