destroyNode() public method

public destroyNode ( Node $node ) : Guzzle\Http\Message\Response
$node LibCloud\Compute\Model\Node
return Guzzle\Http\Message\Response
 /**
  * @depends testListNodesWithId
  */
 public function testDestroyNode($node)
 {
     $this->addMockSubscriber($this->getTestFilePath('Server'));
     $this->addMockSubscriber($this->getTestFilePath('Server_Meta'));
     $this->addMockSubscriber($this->getTestFilePath('Server_Delete'));
     $r = $this->provider->destroyNode($node);
     $this->assertSame(204, $r->getStatusCode(), 'destroyNode returns the API response for a successful reboot');
 }