(self)
| 67 | assert image.id in get_ids(client.images.list('alpine:latest')) |
| 68 | |
| 69 | def test_pull(self): |
| 70 | client = docker.from_env(version=TEST_API_VERSION) |
| 71 | image = client.images.pull('alpine:latest') |
| 72 | assert 'alpine:latest' in image.attrs['RepoTags'] |
| 73 | |
| 74 | def test_pull_with_tag(self): |
| 75 | client = docker.from_env(version=TEST_API_VERSION) |