()
| 173 | expected = ('a', 'b', 'c', 'd', 'e') |
| 174 | |
| 175 | def check_parts(): |
| 176 | b.wait() |
| 177 | self.assertEqual(path.parts, expected) |
| 178 | |
| 179 | threads = [threading.Thread(target=check_parts) for _ in range(NUM_THREADS)] |
| 180 | with threading_helper.start_threads(threads): |
nothing calls this directly
no test coverage detected