From 6d667a849e4989be83dfe875e9e1e11670c6fd20 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 21 Sep 2011 23:05:31 +0200 Subject: [PATCH] Remove broken functional test --- .../Test/DependencyResolver/SolverTest.php | 22 ------------------- 1 file changed, 22 deletions(-) diff --git a/tests/Composer/Test/DependencyResolver/SolverTest.php b/tests/Composer/Test/DependencyResolver/SolverTest.php index 972676737..8fc8fc630 100644 --- a/tests/Composer/Test/DependencyResolver/SolverTest.php +++ b/tests/Composer/Test/DependencyResolver/SolverTest.php @@ -213,28 +213,6 @@ class SolverTest extends \PHPUnit_Framework_TestCase )); } - /** - * @TODO: fix packagist.org bug - */ - public function BROKEN_testSolverWithComposerRepo() - { - $this->repoInstalled = new PlatformRepository; - - // overwrite solver with custom installed repo - $this->solver = new Solver($this->policy, $this->pool, $this->repoInstalled); - - $this->repo = new ComposerRepository('http://packagist.org'); - list($monolog) = $this->repo->getPackages(); - - $this->reposComplete(); - - $this->request->install('Monolog'); - - $this->checkSolverResult(array( - array('job' => 'install', 'package' => $monolog), - )); - } - protected function reposComplete() { $this->pool->addRepository($this->repoInstalled);