/**
  * @test
  */
 public function shortcut_to_set_name_and_no_path_for_read()
 {
     $this->setUpFixtureYml();
     $fixturizer = new Reader();
     $path = __DIR__ . "/tmp/";
     $fixturizer->getFixture('foo.yml', $path);
     $result = $fixturizer->getContentArray();
     $this->assertArrayHasKey('foo', $result);
 }