(self)
| 44 | self.client.inspect_volume(name) |
| 45 | |
| 46 | def test_remove_volume(self): |
| 47 | name = 'shootthebullet' |
| 48 | self.tmp_volumes.append(name) |
| 49 | self.client.create_volume(name) |
| 50 | self.client.remove_volume(name) |
| 51 | |
| 52 | @requires_api_version('1.25') |
| 53 | def test_force_remove_volume(self): |
nothing calls this directly
no test coverage detected