X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fcomposer%2Finstallers%2Ftests%2FComposer%2FInstallers%2FTest%2FPimcoreInstallerTest.php;fp=vendor%2Fcomposer%2Finstallers%2Ftests%2FComposer%2FInstallers%2FTest%2FPimcoreInstallerTest.php;h=0000000000000000000000000000000000000000;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hp=ea79374bf51c37063fafefb26a420b4a43806a63;hpb=74df008bdbb3a11eeea356744f39b802369bda3c;p=yaffs-website diff --git a/vendor/composer/installers/tests/Composer/Installers/Test/PimcoreInstallerTest.php b/vendor/composer/installers/tests/Composer/Installers/Test/PimcoreInstallerTest.php deleted file mode 100644 index ea79374bf..000000000 --- a/vendor/composer/installers/tests/Composer/Installers/Test/PimcoreInstallerTest.php +++ /dev/null @@ -1,44 +0,0 @@ -package = new Package('CamelCased', '1.0', '1.0'); - $this->io = $this->getMock('Composer\IO\PackageInterface'); - $this->composer = new Composer(); - } - - /** - * testInflectPackageVars - * - * @return void - */ - public function testInflectPackageVars() - { - $installer = new PimcoreInstaller($this->package, $this->composer); - $result = $installer->inflectPackageVars(array('name' => 'CamelCased')); - $this->assertEquals($result, array('name' => 'CamelCased')); - - $installer = new PimcoreInstaller($this->package, $this->composer); - $result = $installer->inflectPackageVars(array('name' => 'with-dash')); - $this->assertEquals($result, array('name' => 'WithDash')); - - $installer = new PimcoreInstaller($this->package, $this->composer); - $result = $installer->inflectPackageVars(array('name' => 'with_underscore')); - $this->assertEquals($result, array('name' => 'WithUnderscore')); - } -}