(self)
| 51 | |
| 52 | @requires_api_version('1.25') |
| 53 | def test_force_remove_volume(self): |
| 54 | name = 'shootthebullet' |
| 55 | self.tmp_volumes.append(name) |
| 56 | self.client.create_volume(name) |
| 57 | self.client.remove_volume(name, force=True) |
| 58 | |
| 59 | @requires_api_version('1.25') |
| 60 | def test_prune_volumes(self): |
nothing calls this directly
no test coverage detected