diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-11-23 15:58:32 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-11-23 16:04:42 +0100 |
commit | 8ad01ee239f9111133e52af29b78daed34c52e49 (patch) | |
tree | 8c20fda5672687fbb7b1f731e303c295954ea142 /test | |
parent | a93eb7e8484e5bb40f9b8d11ac64a1621cf4c9cd (diff) | |
download | gitpython-8ad01ee239f9111133e52af29b78daed34c52e49.tar.gz |
SymbolicReference: log method added, including test
Diffstat (limited to 'test')
-rw-r--r-- | test/test_refs.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_refs.py b/test/test_refs.py index ebf1a00d..1f3dfb9f 100644 --- a/test/test_refs.py +++ b/test/test_refs.py @@ -488,3 +488,6 @@ class TestRefs(TestBase): def test_dereference_recursive(self): # for now, just test the HEAD assert SymbolicReference.dereference_recursive(self.rorepo, 'HEAD') + + def test_reflog(self): + assert isinstance(self.rorepo.heads.master.log(), RefLog) |