Ejemplo n.º 1
0
 /**
  * Destroy an instance
  *
  * @param  string $id
  * @return boolean
  */
 public function destroyInstance($id)
 {
     $this->adapterResult = $this->rackspace->deleteServer($id);
     return $this->adapterResult;
 }
Ejemplo n.º 2
0
 /**
  * Test delete server
  */
 public function testDeleteServer()
 {
     $this->assertTrue($this->rackspace->deleteServer(self::$serverId));
 }