summaryrefslogtreecommitdiff
path: root/test/git/test_commit.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-11 22:50:07 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-11 22:50:07 +0200
commitc68459a17ff59043d29c90020fffe651b2164e6a (patch)
treea5b715a490d9cbd8f45eabc1968374c96bdea1c0 /test/git/test_commit.py
parentb01824b1aecf8aadae4501e22feb45c20fb26bce (diff)
downloadgitpython-c68459a17ff59043d29c90020fffe651b2164e6a.tar.gz
Added remaining tests for new base classes and removed some methods whose existance was doubtful or unsafe
Diffstat (limited to 'test/git/test_commit.py')
-rw-r--r--test/git/test_commit.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/git/test_commit.py b/test/git/test_commit.py
index ab1801ee..71dad562 100644
--- a/test/git/test_commit.py
+++ b/test/git/test_commit.py
@@ -24,10 +24,6 @@ class TestCommit(object):
assert_true(git.called)
assert_equal(git.call_args, (('rev_list', '4c8124ffcf4039d292442eeccabdeca5af5c5017', '--', ''), {'pretty': 'raw', 'max_count': 1}))
- @patch_object(Git, '_call_process')
- def test_id_abbrev(self, git):
- git.return_value = fixture('rev_list_commit_idabbrev')
- assert_equal('80f136f', self.repo.commit('80f136f500dfdb8c3e8abf4ae716f875f0a1b57f').id_abbrev)
@patch_object(Git, '_call_process')
def test_diff(self, git):