(self)
| 805 | client.api.top.assert_called_with(FAKE_CONTAINER_ID) |
| 806 | |
| 807 | def test_unpause(self): |
| 808 | client = make_fake_client() |
| 809 | container = client.containers.get(FAKE_CONTAINER_ID) |
| 810 | container.unpause() |
| 811 | client.api.unpause.assert_called_with(FAKE_CONTAINER_ID) |
| 812 | |
| 813 | def test_update(self): |
| 814 | client = make_fake_client() |
nothing calls this directly
no test coverage detected