(self, name)
| 13 | |
| 14 | class wvmInstances(wvmConnect): |
| 15 | def get_instance_status(self, name): |
| 16 | inst = self.get_instance(name) |
| 17 | return inst.info()[0] |
| 18 | |
| 19 | def get_instance_memory(self, name): |
| 20 | inst = self.get_instance(name) |
nothing calls this directly
no test coverage detected