Method
test_build_passes_timeout_ms
(self, sut: BuildAPI, mock_conn: MagicMock)
Source from the content-addressed store, hash-verified
| 65 | assert params["scenes"] == ["a.unity", "b.unity"] |
| 66 | |
| 67 | def test_build_passes_timeout_ms(self, sut: BuildAPI, mock_conn: MagicMock) -> None: |
| 68 | mock_conn.send_request.return_value = {"success": True} |
| 69 | |
| 70 | sut.build() |
| 71 | |
| 72 | kwargs = mock_conn.send_request.call_args[1] |
| 73 | assert kwargs["timeout_ms"] == 600_000 |
| 74 | |
| 75 | |
| 76 | class TestBuildAPIScenes: |
Callers
nothing calls this directly
Tested by
no test coverage detected