blob: 91ac4dc3f45d37a4f669e5dbb4c788d2afaf3e03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""Channel testing"""
from test.testlib import *
from git.async.task import *
import time
class TestTask(TestBase):
max_threads = cpu_count()
def test_iterator_task(self):
self.fail("test iterator task")
|