aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/log_test.rb
blob: b2e150ccd5f57555d9d190cb1a61695c2718ad7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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