mirror of
https://github.com/composer/composer
synced 2025-05-09 00:22:53 +00:00
Add output for metapackage installs/updates/.. fixes #7586
This commit is contained in:
parent
dec2b5cd50
commit
98a15bc93c
5 changed files with 31 additions and 6 deletions
|
@ -27,7 +27,7 @@ class MetapackageInstallerTest extends TestCase
|
|||
|
||||
$this->io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
|
||||
|
||||
$this->installer = new MetapackageInstaller();
|
||||
$this->installer = new MetapackageInstaller($this->io);
|
||||
}
|
||||
|
||||
public function testInstall()
|
||||
|
@ -45,7 +45,13 @@ class MetapackageInstallerTest extends TestCase
|
|||
public function testUpdate()
|
||||
{
|
||||
$initial = $this->createPackageMock();
|
||||
$initial->expects($this->once())
|
||||
->method('getVersion')
|
||||
->will($this->returnValue('1.0.0'));
|
||||
$target = $this->createPackageMock();
|
||||
$target->expects($this->once())
|
||||
->method('getVersion')
|
||||
->will($this->returnValue('1.0.1'));
|
||||
|
||||
$this->repository
|
||||
->expects($this->exactly(2))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue