public function testUpdatePassesThroughToConnection()
 {
     $category = new Category((object) array('id' => 1));
     $this->connection->expects($this->once())->method('put')->with($this->basePath . '/categories/1', $category->getUpdateFields());
     $category->update();
 }