(self)
| 744 | client.api.logs.assert_called_with(FAKE_CONTAINER_ID) |
| 745 | |
| 746 | def test_pause(self): |
| 747 | client = make_fake_client() |
| 748 | container = client.containers.get(FAKE_CONTAINER_ID) |
| 749 | container.pause() |
| 750 | client.api.pause.assert_called_with(FAKE_CONTAINER_ID) |
| 751 | |
| 752 | def test_put_archive(self): |
| 753 | client = make_fake_client() |
nothing calls this directly
no test coverage detected