aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/log_test.rb
diff options
context:
space:
mode:
authorMarkus Reiter2017-02-24 17:12:54 +0100
committerGitHub2017-02-24 17:12:54 +0100
commitbab96dd349b3c242eacc689c0142e442b5de5e13 (patch)
tree02d0f7030c1dcc869dd00a6c896d84280741fb05 /Library/Homebrew/test/log_test.rb
parent0f45e60b29dc42a48ac08d9c69f0605e0c0912de (diff)
parentd9b2fdbea63730281964d71f968c0cb0aaf8e5ad (diff)
downloadbrew-bab96dd349b3c242eacc689c0142e442b5de5e13.tar.bz2
Merge pull request #2118 from reitermarkus/spec-log
Convert `brew log` test to spec.
Diffstat (limited to 'Library/Homebrew/test/log_test.rb')
-rw-r--r--Library/Homebrew/test/log_test.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/Library/Homebrew/test/log_test.rb b/Library/Homebrew/test/log_test.rb
deleted file mode 100644
index b2e150ccd..000000000
--- a/Library/Homebrew/test/log_test.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-require "testing_env"
-
-class IntegrationCommandTestLog < IntegrationCommandTestCase
- def test_log
- FileUtils.cd HOMEBREW_REPOSITORY do
- shutup do
- system "git", "init"
- system "git", "commit", "--allow-empty", "-m", "This is a test commit"
- end
- end
- assert_match "This is a test commit", cmd("log")
- end
-end