(self)
| 763 | client.api.remove_container.assert_called_with(FAKE_CONTAINER_ID) |
| 764 | |
| 765 | def test_rename(self): |
| 766 | client = make_fake_client() |
| 767 | container = client.containers.get(FAKE_CONTAINER_ID) |
| 768 | container.rename("foo") |
| 769 | client.api.rename.assert_called_with(FAKE_CONTAINER_ID, "foo") |
| 770 | |
| 771 | def test_resize(self): |
| 772 | client = make_fake_client() |
nothing calls this directly
no test coverage detected