1
0
mirror of https://github.com/danog/file.git synced 2024-12-11 08:50:08 +01:00
file/test/EioHandleTest.php

19 lines
490 B
PHP
Raw Normal View History

<?php
2015-08-13 01:02:41 +02:00
namespace Amp\File\Test;
class EioHandleTest extends AsyncHandleTest {
protected function execute(callable $cb) {
2015-08-13 01:02:41 +02:00
if (\extension_loaded("eio")) {
2017-06-17 23:41:57 +02:00
\Amp\Loop::run(function () use ($cb) {
2016-07-21 01:33:03 +02:00
\Amp\File\filesystem(new \Amp\File\EioDriver);
\Amp\Promise\rethrow(new \Amp\Coroutine($cb()));
2016-07-21 01:33:03 +02:00
});
2015-08-13 01:02:41 +02:00
} else {
$this->markTestSkipped(
"eio extension not loaded"
);
}
}
}