(self)
| 1470 | ) |
| 1471 | |
| 1472 | def test_remove_container(self): |
| 1473 | self.client.remove_container(fake_api.FAKE_CONTAINER_ID) |
| 1474 | |
| 1475 | fake_request.assert_called_with( |
| 1476 | 'DELETE', |
| 1477 | url_prefix + 'containers/' + fake_api.FAKE_CONTAINER_ID, |
| 1478 | params={'v': False, 'link': False, 'force': False}, |
| 1479 | timeout=DEFAULT_TIMEOUT_SECONDS |
| 1480 | ) |
| 1481 | |
| 1482 | def test_remove_container_with_dict_instead_of_id(self): |
| 1483 | self.client.remove_container({'Id': fake_api.FAKE_CONTAINER_ID}) |
nothing calls this directly
no test coverage detected