/**
  * @test
  */
 public function it_can_count_how_many_total_lines_the_file_has()
 {
     $path = $this->get_fixture_path('env-one-line-one-comment');
     $env = new File($path);
     $env->load();
     $this->assertSame(2, $env->lineCount());
 }