summaryrefslogtreecommitdiff
path: root/test/git/test_refs.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-23 14:46:18 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-23 14:46:18 +0200
commit2c23ca3cd9b9bbeaca1b79068dee1eae045be5b6 (patch)
treef0d9bdfee7b07901462c158af4983492010d20bf /test/git/test_refs.py
parenta7a4388eeaa4b6b94192dce67257a34c4a6cbd26 (diff)
downloadgitpython-2c23ca3cd9b9bbeaca1b79068dee1eae045be5b6.tar.gz
refs: added create, delete and rename methods where appropriate. Tests are marked, implementation is needed for most of them
Diffstat (limited to 'test/git/test_refs.py')
-rw-r--r--test/git/test_refs.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/git/test_refs.py b/test/git/test_refs.py
index 1562310a..2665d93b 100644
--- a/test/git/test_refs.py
+++ b/test/git/test_refs.py
@@ -108,3 +108,11 @@ class TestRefs(TestBase):
# type check
self.failUnlessRaises(ValueError, setattr, cur_head, "reference", "that")
+
+
+ self.fail("head creation")
+ self.fail("head renaming")
+ self.fail("head removal")
+ self.fail("tag creation")
+ self.fail("tag deletion")
+ self.fail("remote deletion")