/**
  * @test
  * @group core
  */
 public function it_fetches_a_single_category_from_the_api_and_returns_a_category_entity()
 {
     $category = $this->client->categories($this->client->categories()[0]->id);
     $this->assertInstanceOf('MediaFoundry\\Api\\Entities\\Category', $category);
 }