mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
be239896d3
API Remove filesystem sync API to handle file manipulations
19 lines
354 B
PHP
19 lines
354 B
PHP
<?php
|
|
class ImagickImageTest extends ImageTest {
|
|
public function setUp() {
|
|
$skip = !extension_loaded("imagick");
|
|
if($skip) {
|
|
$this->skipTest = true;
|
|
}
|
|
|
|
parent::setUp();
|
|
|
|
if($skip) {
|
|
$this->markTestSkipped("The Imagick extension is not available.");
|
|
}
|
|
|
|
|
|
Config::inst()->update('Injector', 'Image_Backend', 'ImagickBackend');
|
|
}
|
|
}
|