diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-07-08 10:28:17 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-07-08 10:28:17 +0200 |
commit | 16a13276f26e2b4b0cad35c66a527bb8d128d587 (patch) | |
tree | 024ce184c93631698439623dc410c6701a1c971b /git/test/db/dulwich/test_base.py | |
parent | 023dc1244c02d415bb964eeb0b51b257523897df (diff) | |
download | gitpython-16a13276f26e2b4b0cad35c66a527bb8d128d587.tar.gz |
Added basic frame for pygit2 - it just needs some basic methods to be implemented now - depending on the performance, it might actually receive some more work
Diffstat (limited to 'git/test/db/dulwich/test_base.py')
-rw-r--r-- | git/test/db/dulwich/test_base.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/git/test/db/dulwich/test_base.py b/git/test/db/dulwich/test_base.py index 50e64131..78416518 100644 --- a/git/test/db/dulwich/test_base.py +++ b/git/test/db/dulwich/test_base.py @@ -20,7 +20,7 @@ else: #END handle imports -class TestPyDBBase(RepoBase): +class TestDulwichDBBase(RepoBase): __metaclass__ = DulwichRequiredMetaMixin RepoCls = DulwichDB @@ -28,6 +28,5 @@ class TestPyDBBase(RepoBase): @with_rw_repo('HEAD', bare=False) def test_basics(self, rw_repo): db = DulwichDB(rw_repo.working_tree_dir) - print db.git_dir |