| 40 | ) |
| 41 | |
| 42 | class ImmediateThread: |
| 43 | def __init__(self, target=None, daemon=None): |
| 44 | self.target = target |
| 45 | |
| 46 | def start(self): |
| 47 | if self.target: |
| 48 | self.target() |
| 49 | |
| 50 | monkeypatch.setattr(srv.threading, 'Thread', ImmediateThread) |
| 51 |
nothing calls this directly
no outgoing calls
no test coverage detected