2016-08-24 07:01:41 +02:00
|
|
|
<?php declare(strict_types = 1);
|
2015-07-18 18:08:50 +02:00
|
|
|
|
2015-08-05 16:55:56 +02:00
|
|
|
namespace Amp\File\Test;
|
2015-07-18 18:08:50 +02:00
|
|
|
|
2015-07-30 16:10:53 +02:00
|
|
|
class EioDriverTest extends DriverTest {
|
2016-07-21 01:33:03 +02:00
|
|
|
protected function lRun(callable $cb) {
|
|
|
|
if (\extension_loaded("eio")) {
|
|
|
|
\Interop\Async\Loop::execute(function() use ($cb) {
|
|
|
|
\Amp\File\filesystem(new \Amp\File\EioDriver);
|
|
|
|
\Amp\rethrow(new \Amp\Coroutine($cb()));
|
|
|
|
});
|
2015-07-18 18:08:50 +02:00
|
|
|
} else {
|
|
|
|
$this->markTestSkipped(
|
2015-07-30 15:07:01 +02:00
|
|
|
"eio extension not loaded"
|
2015-07-18 18:08:50 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|