diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-05-06 15:03:14 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-05-06 15:03:14 +0200 |
commit | acf5e6ea64a2f24117f1d419c208ed1c38c43690 (patch) | |
tree | 75dedc18137297829e84f3a151130a589c3d844b /git/test/test_refs.py | |
parent | 56da804ff295a05a38dc2cc73755706ea756fc52 (diff) | |
download | gitpython-acf5e6ea64a2f24117f1d419c208ed1c38c43690.tar.gz |
replaced all gitdb strings with git
Diffstat (limited to 'git/test/test_refs.py')
-rw-r--r-- | git/test/test_refs.py | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/git/test/test_refs.py b/git/test/test_refs.py index 649542f3..722c5ed5 100644 --- a/git/test/test_refs.py +++ b/git/test/test_refs.py @@ -4,16 +4,18 @@ # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php -from gitdb.test.lib import * -from gitdb.ref import * -import gitdb.ref as ref +from git.test.lib import * +from git.ref import * +import git.ref as ref -from gitdb.util import Actor -from gitdb.object.tag import TagObject +from git.util import Actor +from git.object.tag import TagObject from itertools import chain import os +from nose import SkipTest + class TestRefs(TestBase): def test_from_path(self): @@ -520,3 +522,5 @@ class TestRefs(TestBase): def test_reflog(self): assert isinstance(Head.list_items(self.rorepo).master.log(), RefLog) + def test_pure_python_rename(self): + raise SkipTest("Pure python reference renames cannot properly handle refnames which become a directory after rename") |