MCPcopy Index your code
hub / github.com/docker/docker-py / test_unpause

Method test_unpause

tests/unit/models_containers_test.py:807–811  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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()

Callers

nothing calls this directly

Calls 3

make_fake_clientFunction · 0.85
getMethod · 0.45
unpauseMethod · 0.45

Tested by

no test coverage detected