ExpressiveInstallerTest\RemoveDevDependenciesTest::testDevDependenciesAreRemoved PHP Method

testDevDependenciesAreRemoved() public method

    public function testDevDependenciesAreRemoved()
    {
        // Prepare the installer
        OptionalPackages::removeDevDependencies();
        $this->assertComposerHasPackages($this->standardDependencies);
        $this->assertComposerNotHasPackages($this->devDependencies);
    }