aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothee Cour2017-02-12 14:47:05 -0800
committerTimothee Cour2017-02-12 14:47:05 -0800
commit588f98cf825be855782ec00272f8d7e691d37c69 (patch)
tree5a7a80f6be4d7d66259c099a62c1c452d82fdaff
parent0d715f90ea0e9b84231ce2221709f2134ee0ae31 (diff)
downloadbrew-588f98cf825be855782ec00272f8d7e691d37c69.tar.bz2
formula:formula_cmd_test
-rw-r--r--Library/Homebrew/test/formula_cmd_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/Homebrew/test/formula_cmd_test.rb b/Library/Homebrew/test/formula_cmd_test.rb
new file mode 100644
index 000000000..abbe42d98
--- /dev/null
+++ b/Library/Homebrew/test/formula_cmd_test.rb
@@ -0,0 +1,8 @@
+require "testing_env"
+
+class IntegrationCommandTestFormula < IntegrationCommandTestCase
+ def test_formula
+ formula_file = setup_test_formula "testball"
+ assert_equal formula_file.to_s, cmd("formula", "testball")
+ end
+end