summaryrefslogtreecommitdiff
path: root/test/test_commit.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-11-24 19:48:59 +0100
committerSebastian Thiel <byronimo@gmail.com>2010-11-24 19:48:59 +0100
commit3175b5b21194bcc8f4448abe0a03a98d3a4a1360 (patch)
treef1a098c4b38ae3b7cf52600e9fc9c357cdd7c353 /test/test_commit.py
parentfca367548e365f93c58c47dea45507025269f59a (diff)
parent3203cd7629345d32806f470a308975076b2b4686 (diff)
downloadgitpython-3175b5b21194bcc8f4448abe0a03a98d3a4a1360.tar.gz
Merge branch 'reflog'
Diffstat (limited to 'test/test_commit.py')
-rw-r--r--test/test_commit.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_commit.py b/test/test_commit.py
index a00a8de8..4a8d8b87 100644
--- a/test/test_commit.py
+++ b/test/test_commit.py
@@ -70,6 +70,8 @@ class TestCommit(TestBase):
def test_bake(self):
commit = self.rorepo.commit('2454ae89983a4496a445ce347d7a41c0bb0ea7ae')
+ # commits have no dict
+ self.failUnlessRaises(AttributeError, setattr, commit, 'someattr', 1)
commit.author # bake
assert_equal("Sebastian Thiel", commit.author.name)