(self)
| 757 | 'path', 'foo') |
| 758 | |
| 759 | def test_remove(self): |
| 760 | client = make_fake_client() |
| 761 | container = client.containers.get(FAKE_CONTAINER_ID) |
| 762 | container.remove() |
| 763 | client.api.remove_container.assert_called_with(FAKE_CONTAINER_ID) |
| 764 | |
| 765 | def test_rename(self): |
| 766 | client = make_fake_client() |
nothing calls this directly
no test coverage detected