(self)
| 107 | assert args[0][1] == f'{url_prefix}volumes/{name}' |
| 108 | |
| 109 | def test_remove_volume(self): |
| 110 | name = 'perfectcherryblossom' |
| 111 | self.client.remove_volume(name) |
| 112 | args = fake_request.call_args |
| 113 | |
| 114 | assert args[0][0] == 'DELETE' |
| 115 | assert args[0][1] == f'{url_prefix}volumes/{name}' |
nothing calls this directly
no test coverage detected