diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-05 18:26:26 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-05 18:26:26 +0200 |
commit | 50e469109eed3a752d9a1b0297f16466ad92f8d2 (patch) | |
tree | 80781beb3ee4eee74056079332c722078ce46638 /test/git/odb/test_pool.py | |
parent | 65c9fe0baa579173afa5a2d463ac198d06ef4993 (diff) | |
download | gitpython-50e469109eed3a752d9a1b0297f16466ad92f8d2.tar.gz |
Initial pool design added, allowing for lazy channel based evaluation of inter-dependent tasks
Diffstat (limited to 'test/git/odb/test_pool.py')
-rw-r--r-- | test/git/odb/test_pool.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/git/odb/test_pool.py b/test/git/odb/test_pool.py new file mode 100644 index 00000000..6656c69d --- /dev/null +++ b/test/git/odb/test_pool.py @@ -0,0 +1,10 @@ +"""Channel testing""" +from test.testlib import * +from git.odb.pool import * + +import time + +class TestThreadPool(TestBase): + + def test_base(self): + pass |