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/objects/test_submodule.py | |
| parent | 56da804ff295a05a38dc2cc73755706ea756fc52 (diff) | |
| download | GitPython-acf5e6ea64a2f24117f1d419c208ed1c38c43690.tar.gz GitPython-acf5e6ea64a2f24117f1d419c208ed1c38c43690.zip | |
replaced all gitdb strings with git
Diffstat (limited to 'git/test/objects/test_submodule.py')
| -rw-r--r-- | git/test/objects/test_submodule.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/git/test/objects/test_submodule.py b/git/test/objects/test_submodule.py index adb4fb82..d6062be9 100644 --- a/git/test/objects/test_submodule.py +++ b/git/test/objects/test_submodule.py @@ -40,9 +40,9 @@ class TestSubmodule(TestBase): # at a different time, there is None assert len(Submodule.list_items(rwrepo, self.k_no_subm_tag)) == 0 - assert sm.path == 'git/ext/gitdb' + assert sm.path == 'git/ext/git' assert sm.path != sm.name # in our case, we have ids there, which don't equal the path - assert sm.url == 'git://github.com/gitpython-developers/gitdb.git' + assert sm.url == 'git://github.com/gitpython-developers/git.git' assert sm.branch_path == 'refs/heads/master' # the default ... assert sm.branch_name == 'master' assert sm.parent_commit == rwrepo.head.commit @@ -384,9 +384,9 @@ class TestSubmodule(TestBase): rm.config_reader() rm.config_writer() - # deep traversal gitdb / async + # deep traversal git / async rsmsp = [sm.path for sm in rm.traverse()] - assert len(rsmsp) == 2 # gitdb and async, async being a child of gitdb + assert len(rsmsp) == 2 # git and async, async being a child of git # cannot set the parent commit as root module's path didn't exist self.failUnlessRaises(ValueError, rm.set_parent_commit, 'HEAD') |
