public function testDeletingAllOrderShipmentsDeletesToTheOrderShipmentResource()
 {
     $this->connection->expects($this->once())->method('delete')->with($this->basePath . '/orders/1/shipments');
     Client::deleteAllShipmentsForOrder(1);
 }