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

Method test_diff

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

Source from the content-addressed store, hash-verified

1344 )
1345
1346 def test_diff(self):
1347 self.client.diff(fake_api.FAKE_CONTAINER_ID)
1348
1349 fake_request.assert_called_with(
1350 'GET',
1351 (url_prefix + 'containers/' +
1352 fake_api.FAKE_CONTAINER_ID + '/changes'),
1353 timeout=DEFAULT_TIMEOUT_SECONDS
1354 )
1355
1356 def test_diff_with_dict_instead_of_id(self):
1357 self.client.diff({'Id': fake_api.FAKE_CONTAINER_ID})

Callers

nothing calls this directly

Calls 1

diffMethod · 0.45

Tested by

no test coverage detected