(self)
| 94 | ) |
| 95 | |
| 96 | def test_push(self): |
| 97 | client = make_fake_client() |
| 98 | client.images.push('foobar', insecure_registry=True) |
| 99 | client.api.push.assert_called_with( |
| 100 | 'foobar', |
| 101 | tag=None, |
| 102 | insecure_registry=True |
| 103 | ) |
| 104 | |
| 105 | def test_remove(self): |
| 106 | client = make_fake_client() |
nothing calls this directly
no test coverage detected