(self)
| 64 | } |
| 65 | |
| 66 | def test_exec_inspect(self): |
| 67 | self.client.exec_inspect(fake_api.FAKE_EXEC_ID) |
| 68 | |
| 69 | args = fake_request.call_args |
| 70 | assert args[0][1] == f"{url_prefix}exec/{fake_api.FAKE_EXEC_ID}/json" |
| 71 | |
| 72 | def test_exec_resize(self): |
| 73 | self.client.exec_resize(fake_api.FAKE_EXEC_ID, height=20, width=60) |
nothing calls this directly
no test coverage detected