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

Method test_images_name

tests/unit/api_image_test.py:34–43  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

32 )
33
34 def test_images_name(self):
35 self.client.images('foo:bar')
36
37 fake_request.assert_called_with(
38 'GET',
39 f"{url_prefix}images/json",
40 params={'only_ids': 0, 'all': 0,
41 'filters': '{"reference": ["foo:bar"]}'},
42 timeout=DEFAULT_TIMEOUT_SECONDS
43 )
44
45 def test_images_quiet(self):
46 self.client.images(all=True, quiet=True)

Callers

nothing calls this directly

Calls 1

imagesMethod · 0.45

Tested by

no test coverage detected