/**
  * @expectedException \AlfredNutileInc\Fixturizer\MissingFileException
  * @test
  */
 public function should_fail_if_folder_does_not_exist()
 {
     $this->setUpFixtureYml();
     $fixturizer = new Reader();
     $path = __DIR__ . "/foobarland/";
     $name = 'foo.yml';
     $fixturizer->setBaseFixtureStoragePath($path);
     $fixturizer->setName($name);
     $fixturizer->convertYmlToArray();
     $result = $fixturizer->getContentArray();
     $this->assertArrayHasKey('foo', $result);
 }