diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2011-07-07 23:37:19 +0200 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2011-07-07 23:37:19 +0200 |
| commit | 023dc1244c02d415bb964eeb0b51b257523897df (patch) | |
| tree | 2ebffe75f484d48a8fdc2c282a457cf77a86c3cf /git/test/performance/db | |
| parent | 2baf8a493618463d2bb41b8e96c8304bf48e2c8a (diff) | |
| parent | f4f330f8588dacd43af6513e1e1e1a50237da1e7 (diff) | |
| download | GitPython-023dc1244c02d415bb964eeb0b51b257523897df.tar.gz GitPython-023dc1244c02d415bb964eeb0b51b257523897df.zip | |
Merge branch 'dulwich'
Diffstat (limited to 'git/test/performance/db')
| -rw-r--r-- | git/test/performance/db/test_looseodb_dulwich.py | 6 | ||||
| -rw-r--r-- | git/test/performance/db/test_odb_dulwich.py | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/git/test/performance/db/test_looseodb_dulwich.py b/git/test/performance/db/test_looseodb_dulwich.py new file mode 100644 index 00000000..cf27a528 --- /dev/null +++ b/git/test/performance/db/test_looseodb_dulwich.py @@ -0,0 +1,6 @@ +from git.db.dulwich.complex import DulwichGitODB +from looseodb_impl import TestLooseDBWPerformanceBase + +class TestPureLooseDB(TestLooseDBWPerformanceBase): + LooseODBCls = DulwichGitODB + diff --git a/git/test/performance/db/test_odb_dulwich.py b/git/test/performance/db/test_odb_dulwich.py new file mode 100644 index 00000000..069c5b43 --- /dev/null +++ b/git/test/performance/db/test_odb_dulwich.py @@ -0,0 +1,6 @@ +from git.db.dulwich.complex import DulwichCompatibilityGitDB +from odb_impl import TestObjDBPerformanceBase + +class TestPureDB(TestObjDBPerformanceBase): + RepoCls = DulwichCompatibilityGitDB + |
