summaryrefslogtreecommitdiffstats
path: root/tests/units/test_diff.rb
blob: b8ed6b804dbcf2225cff0418a68349db167ceb75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env ruby

require File.dirname(__FILE__) + '/../test_helper'

class TestDiff < Test::Unit::TestCase
  def setup
    set_file_paths
    @git = Git.open(@wdir)
  end
  
  def test_diff
  end
  
  def test_diff_summary
  end
  
  def test_diff_stat
  end
  
  def test_diff_shortstat
  end
  
  def test_patch
  end
  
  def test_unified
  end
  
end