(stub: _FakeStub)
| 61 | |
| 62 | |
| 63 | def _client_with_fake_stub(stub: _FakeStub) -> SandboxClient: |
| 64 | client = cast("SandboxClient", object.__new__(SandboxClient)) |
| 65 | client._timeout = 30.0 |
| 66 | client._stub = cast("Any", stub) |
| 67 | return client |
| 68 | |
| 69 | |
| 70 | def test_exec_sends_stdin_payload() -> None: |
no outgoing calls
no test coverage detected