From ab59f78341f1dd188aaf4c30526f6295c63438b1 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sat, 5 Jun 2010 20:03:09 +0200 Subject: Renamed mp to async, as this is a much better name for what is actually going on. The default implementation uses threads, which ends up being nothing more than async, as they are all locked down by internal and the global interpreter lock --- test/git/async/test_pool.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/git/async/test_pool.py (limited to 'test/git/async/test_pool.py') diff --git a/test/git/async/test_pool.py b/test/git/async/test_pool.py new file mode 100644 index 00000000..3a9ef8a1 --- /dev/null +++ b/test/git/async/test_pool.py @@ -0,0 +1,10 @@ +"""Channel testing""" +from test.testlib import * +from git.async.pool import * + +import time + +class TestThreadPool(TestBase): + + def test_base(self): + pass -- cgit v1.2.1