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

Method test_unpause_container

tests/unit/api_container_test.py:1410–1418  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1408 )
1409
1410 def test_unpause_container(self):
1411 self.client.unpause(fake_api.FAKE_CONTAINER_ID)
1412
1413 fake_request.assert_called_with(
1414 'POST',
1415 (url_prefix + 'containers/' +
1416 fake_api.FAKE_CONTAINER_ID + '/unpause'),
1417 timeout=(DEFAULT_TIMEOUT_SECONDS)
1418 )
1419
1420 def test_kill_container(self):
1421 self.client.kill(fake_api.FAKE_CONTAINER_ID)

Callers

nothing calls this directly

Calls 1

unpauseMethod · 0.45

Tested by

no test coverage detected