Gush\Tests\Subscriber\GitRepoSubscriberTest::adds_options_for_git_repo_featured_command PHP Method

    public function adds_options_for_git_repo_featured_command()
    {
        $command = new GitRepoCommand();
        $commandDef = $command->getDefinition();
        $this->assertFalse($commandDef->hasOption('repo'));
        $this->runCommandTest($command);
        $this->assertTrue($commandDef->hasOption('repo-adapter'));
        $this->assertTrue($commandDef->hasOption('repo'));
        $this->assertTrue($commandDef->hasOption('org'));
        $this->assertTrue($commandDef->hasOption('issue-org'));
        $this->assertTrue($commandDef->hasOption('issue-project'));
    }