(self)
| 38 | assert images[0].id == FAKE_IMAGE_ID |
| 39 | |
| 40 | def test_load(self): |
| 41 | client = make_fake_client() |
| 42 | client.images.load('byte stream') |
| 43 | client.api.load_image.assert_called_with('byte stream') |
| 44 | |
| 45 | def test_pull(self): |
| 46 | client = make_fake_client() |
nothing calls this directly
no test coverage detected