public function testCreatingASkuPostsToTheSkuResource()
 {
     $this->connection->expects($this->once())->method('post')->with($this->basePath . '/product/skus', (object) array());
     Client::createSku(array());
 }