Fix tests
parent
3b8ee5dd54
commit
b125926ad3
|
@ -122,20 +122,20 @@ class LockerTest extends \PHPUnit_Framework_TestCase
|
||||||
|
|
||||||
$package1
|
$package1
|
||||||
->expects($this->once())
|
->expects($this->once())
|
||||||
->method('getName')
|
->method('getPrettyName')
|
||||||
->will($this->returnValue('pkg1'));
|
->will($this->returnValue('pkg1'));
|
||||||
$package1
|
$package1
|
||||||
->expects($this->once())
|
->expects($this->once())
|
||||||
->method('getVersion')
|
->method('getPrettyVersion')
|
||||||
->will($this->returnValue('1.0.0-beta'));
|
->will($this->returnValue('1.0.0-beta'));
|
||||||
|
|
||||||
$package2
|
$package2
|
||||||
->expects($this->once())
|
->expects($this->once())
|
||||||
->method('getName')
|
->method('getPrettyName')
|
||||||
->will($this->returnValue('pkg2'));
|
->will($this->returnValue('pkg2'));
|
||||||
$package2
|
$package2
|
||||||
->expects($this->once())
|
->expects($this->once())
|
||||||
->method('getVersion')
|
->method('getPrettyVersion')
|
||||||
->will($this->returnValue('0.1.10'));
|
->will($this->returnValue('0.1.10'));
|
||||||
|
|
||||||
$json
|
$json
|
||||||
|
@ -159,7 +159,7 @@ class LockerTest extends \PHPUnit_Framework_TestCase
|
||||||
$package1 = $this->createPackageMock();
|
$package1 = $this->createPackageMock();
|
||||||
$package1
|
$package1
|
||||||
->expects($this->once())
|
->expects($this->once())
|
||||||
->method('getName')
|
->method('getPrettyName')
|
||||||
->will($this->returnValue('pkg1'));
|
->will($this->returnValue('pkg1'));
|
||||||
|
|
||||||
$this->setExpectedException('LogicException');
|
$this->setExpectedException('LogicException');
|
||||||
|
|
|
@ -99,7 +99,7 @@ class FilesystemRepositoryTest extends TestCase
|
||||||
->expects($this->once())
|
->expects($this->once())
|
||||||
->method('write')
|
->method('write')
|
||||||
->with(array(
|
->with(array(
|
||||||
array('name' => 'mypkg', 'type' => 'library', 'names' => array('mypkg'), 'version' => '0.1.10.0')
|
array('name' => 'mypkg', 'type' => 'library', 'names' => array('mypkg'), 'version' => '0.1.10')
|
||||||
));
|
));
|
||||||
|
|
||||||
$repository->addPackage($this->getPackage('mypkg', '0.1.10'));
|
$repository->addPackage($this->getPackage('mypkg', '0.1.10'));
|
||||||
|
|
Loading…
Reference in New Issue