diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-05 19:59:17 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-05 19:59:17 +0200 |
commit | 61138f2ece0cb864b933698174315c34a78835d1 (patch) | |
tree | bf764cc491c7f29bb4e9cb97b42d75b4b5c6458b /test/git/mp/test_pool.py | |
parent | 50e469109eed3a752d9a1b0297f16466ad92f8d2 (diff) | |
download | gitpython-61138f2ece0cb864b933698174315c34a78835d1.tar.gz |
Moved multiprocessing modules into own package, as they in fact have nothing to do with the object db. If that really works the way I want, it will become an own project, called async
Diffstat (limited to 'test/git/mp/test_pool.py')
-rw-r--r-- | test/git/mp/test_pool.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/git/mp/test_pool.py b/test/git/mp/test_pool.py new file mode 100644 index 00000000..7c4a366f --- /dev/null +++ b/test/git/mp/test_pool.py @@ -0,0 +1,10 @@ +"""Channel testing""" +from test.testlib import * +from git.mp.pool import * + +import time + +class TestThreadPool(TestBase): + + def test_base(self): + pass |