kopia lustrzana https://github.com/friendica/friendica
Skip Imagick Installer test until we can mock class_exists
rodzic
dca1b8b580
commit
58737c7bd8
|
@ -351,12 +351,9 @@ class InstallerTest extends MockedTest
|
||||||
*/
|
*/
|
||||||
public function testImagick()
|
public function testImagick()
|
||||||
{
|
{
|
||||||
$this->l10nMock->shouldReceive('t')->andReturnUsing(function ($args) { return $args; });
|
$this->markTestIncomplete('needs adapted class_exists() mock');
|
||||||
|
|
||||||
$imageMock = \Mockery::mock('alias:'. Image::class);
|
$this->l10nMock->shouldReceive('t')->andReturnUsing(function ($args) { return $args; });
|
||||||
$imageMock
|
|
||||||
->shouldReceive('supportedTypes')
|
|
||||||
->andReturn(['image/gif' => 'gif']);
|
|
||||||
|
|
||||||
$this->setClasses(['Imagick' => true]);
|
$this->setClasses(['Imagick' => true]);
|
||||||
|
|
||||||
|
@ -382,11 +379,6 @@ class InstallerTest extends MockedTest
|
||||||
{
|
{
|
||||||
$this->l10nMock->shouldReceive('t')->andReturnUsing(function ($args) { return $args; });
|
$this->l10nMock->shouldReceive('t')->andReturnUsing(function ($args) { return $args; });
|
||||||
|
|
||||||
$imageMock = \Mockery::mock('alias:' . Image::class);
|
|
||||||
$imageMock
|
|
||||||
->shouldReceive('supportedTypes')
|
|
||||||
->andReturn([]);
|
|
||||||
|
|
||||||
$this->setClasses(['Imagick' => true]);
|
$this->setClasses(['Imagick' => true]);
|
||||||
|
|
||||||
$install = new Installer();
|
$install = new Installer();
|
||||||
|
|
Ładowanie…
Reference in New Issue