1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00
This commit is contained in:
Jordi Boggiano 2018-07-24 14:32:52 +02:00
parent 02d56da414
commit ff59bbdab0
59 changed files with 196 additions and 111 deletions

View file

@ -40,7 +40,8 @@ class RequestTest extends TestCase
array('cmd' => 'install', 'packageName' => 'bar', 'constraint' => null, 'fixed' => true),
array('cmd' => 'remove', 'packageName' => 'foobar', 'constraint' => null, 'fixed' => false),
),
$request->getJobs());
$request->getJobs()
);
}
public function testRequestInstallSamePackageFromDifferentRepositories()
@ -73,6 +74,7 @@ class RequestTest extends TestCase
$this->assertEquals(
array(array('cmd' => 'update-all')),
$request->getJobs());
$request->getJobs()
);
}
}