(self)
| 811 | client.api.unpause.assert_called_with(FAKE_CONTAINER_ID) |
| 812 | |
| 813 | def test_update(self): |
| 814 | client = make_fake_client() |
| 815 | container = client.containers.get(FAKE_CONTAINER_ID) |
| 816 | container.update(cpu_shares=2) |
| 817 | client.api.update_container.assert_called_with(FAKE_CONTAINER_ID, |
| 818 | cpu_shares=2) |
| 819 | |
| 820 | def test_wait(self): |
| 821 | client = make_fake_client() |
nothing calls this directly
no test coverage detected