Esempio n. 1
0
 /** @test */
 public function it_accepts_ignore_param_with_empty_value()
 {
     $cli = $this->getCliMock();
     $arguments = ['php-hound', '--ignore='];
     $command = new Command($cli, $this->binariesPath, $arguments);
     $this->assertEquals([], $command->getIgnoredPaths());
 }