X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fcomposer%2Finstallers%2Ftests%2FComposer%2FInstallers%2FTest%2FYawikInstallerTest.php;fp=vendor%2Fcomposer%2Finstallers%2Ftests%2FComposer%2FInstallers%2FTest%2FYawikInstallerTest.php;h=0000000000000000000000000000000000000000;hp=d8d35ff245730609edf670fefb61775b48df9053;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hpb=74df008bdbb3a11eeea356744f39b802369bda3c diff --git a/vendor/composer/installers/tests/Composer/Installers/Test/YawikInstallerTest.php b/vendor/composer/installers/tests/Composer/Installers/Test/YawikInstallerTest.php deleted file mode 100644 index d8d35ff24..000000000 --- a/vendor/composer/installers/tests/Composer/Installers/Test/YawikInstallerTest.php +++ /dev/null @@ -1,64 +0,0 @@ -package = new Package('YawikCompanyRegistration', '1.0', '1.0'); - $this->io = $this->getMock('Composer\IO\PackageInterface'); - $this->composer = new Composer(); - } - - /** - * testInflectPackageVars - * - * @dataProvider packageNameProvider - * @return void - */ - public function testInflectPackageVars($input) - { - $installer = new YawikInstaller($this->package, $this->composer); - $result = $installer->inflectPackageVars(array('name' => $input)); - $this->assertEquals($result, array('name' => 'YawikCompanyRegistration')); - } - - public function packageNameProvider() - { - return array( - array('yawik-company-registration'), - array('yawik_company_registration'), - array('YawikCompanyRegistration') - ); - } -}