summaryrefslogtreecommitdiffstats
path: root/tests/units/test_log.rb
diff options
context:
space:
mode:
authorscott Chacon <schacon@agadorsparticus.(none)>2007-11-27 08:21:28 -0800
committerscott Chacon <schacon@agadorsparticus.(none)>2007-11-27 08:21:28 -0800
commit6a9db968e8563bc27b8f56f9d413159a2e14cf67 (patch)
tree5094084caae36283763eba7a1965f93ad159608a /tests/units/test_log.rb
parent07ebb951368ed31bdaebc2e820c62ced22c8bbe4 (diff)
downloadthird_party-ruby-git-6a9db968e8563bc27b8f56f9d413159a2e14cf67.tar.gz
third_party-ruby-git-6a9db968e8563bc27b8f56f9d413159a2e14cf67.tar.xz
third_party-ruby-git-6a9db968e8563bc27b8f56f9d413159a2e14cf67.zip
fixed issue with running a 'git log' with an object that won't rev-parse (file)
Diffstat (limited to 'tests/units/test_log.rb')
-rw-r--r--tests/units/test_log.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/units/test_log.rb b/tests/units/test_log.rb
index 11dcb27..7bcd83b 100644
--- a/tests/units/test_log.rb
+++ b/tests/units/test_log.rb
@@ -1,10 +1,11 @@
#!/usr/bin/env ruby
-
+require 'logger'
require File.dirname(__FILE__) + '/../test_helper'
class TestLog < Test::Unit::TestCase
def setup
set_file_paths
+ #@git = Git.open(@wdir, :log => Logger.new(STDOUT))
@git = Git.open(@wdir)
end