public function testCreatingOrderShipmentsPostsToTheOrderShipmentsResource()
 {
     $this->connection->expects($this->once())->method('post')->with($this->basePath . '/orders/1/shipments', (object) array());
     Client::createShipment(1, array());
 }