()
| 27 | assert future not in futures |
| 28 | |
| 29 | def test_missing_future(): |
| 30 | futures = FutureCollection() |
| 31 | assert futures.running('test') is None |
| 32 | |
| 33 | def test_duplicate_add_future(): |
| 34 | executor = concurrent.futures.ThreadPoolExecutor(max_workers=1) |
nothing calls this directly
no test coverage detected