diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2011-06-06 17:15:12 +0200 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2011-06-06 17:15:12 +0200 |
| commit | 155158e1410ff036812a87975cce6cb91aa8280e (patch) | |
| tree | 7db2132f9838f2c2112b411b300d7c534d41de95 /git/test/performance/db/test_packedodb_pure.py | |
| parent | d1032572162f91ee9e67e74321f329238fa32b15 (diff) | |
| download | GitPython-155158e1410ff036812a87975cce6cb91aa8280e.tar.gz GitPython-155158e1410ff036812a87975cce6cb91aa8280e.zip | |
Added PackedDB test with generalized type to allows other implementations to be tested as well at some point
Diffstat (limited to 'git/test/performance/db/test_packedodb_pure.py')
| -rw-r--r-- | git/test/performance/db/test_packedodb_pure.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/git/test/performance/db/test_packedodb_pure.py b/git/test/performance/db/test_packedodb_pure.py new file mode 100644 index 00000000..7b9f2930 --- /dev/null +++ b/git/test/performance/db/test_packedodb_pure.py @@ -0,0 +1,7 @@ +from packedodb_impl import TestPurePackedODBPerformanceBase +from git.db.py.pack import PurePackedODB + +class TestPurePackedODB(TestPurePackedODBPerformanceBase): + #{ Configuration + PackedODBCls = PurePackedODB + #} END configuration |
