aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/create.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/create.rb b/Library/Homebrew/cmd/create.rb
index c7fe22fc7..838d8eea3 100644
--- a/Library/Homebrew/cmd/create.rb
+++ b/Library/Homebrew/cmd/create.rb
@@ -124,8 +124,12 @@ class FormulaCreator
end
def test
- # this will fail we won't accept that, make it test the program works!
- system "/usr/bin/false"
+ # This test will fail and we won't accept that! It's enough to just
+ # replace "false" with the main program this formula installs, but
+ # it'd be nice if you were more thorough. Test the test with
+ # `brew test #{name}`. Remove this comment before submitting
+ # your pull request!
+ system "false"
end
end
EOS