(self)
| 103 | ) |
| 104 | |
| 105 | def test_remove(self): |
| 106 | client = make_fake_client() |
| 107 | client.images.remove('test_image') |
| 108 | client.api.remove_image.assert_called_with('test_image') |
| 109 | |
| 110 | def test_search(self): |
| 111 | client = make_fake_client() |
nothing calls this directly
no test coverage detected