added branches, more log stuff, better tests, changed the log api a bit
[rubygit.git] / tests / units / test_diff.rb
blobb8ed6b804dbcf2225cff0418a68349db167ceb75
1 #!/usr/bin/env ruby
3 require File.dirname(__FILE__) + '/../test_helper'
5 class TestDiff < Test::Unit::TestCase
6   def setup
7     set_file_paths
8     @git = Git.open(@wdir)
9   end
10   
11   def test_diff
12   end
13   
14   def test_diff_summary
15   end
16   
17   def test_diff_stat
18   end
19   
20   def test_diff_shortstat
21   end
22   
23   def test_patch
24   end
25   
26   def test_unified
27   end
28   
29 end