/**
  * @test
  */
 public function it_loads_the_file()
 {
     $path = $this->get_fixture_path('env-basic');
     $env = new File($path);
     $this->assertTrue($env->isReadable());
     $this->assertTrue($env->isWritable());
 }