1
0
mirror of https://github.com/danog/file.git synced 2024-12-02 09:17:57 +01:00
file/test/UvDriverTest.php
2016-08-24 00:01:41 -05:00

20 lines
577 B
PHP

<?php declare(strict_types = 1);
namespace Amp\File\Test;
class UvDriverTest extends DriverTest {
protected function lRun(callable $cb) {
if (\extension_loaded("uv")) {
$loop = new \Amp\Loop\UvLoop;
\Interop\Async\Loop::execute(function() use ($cb, $loop) {
\Amp\File\filesystem(new \Amp\File\UvDriver($loop));
\Amp\rethrow(new \Amp\Coroutine($cb()));
}, $loop);
} else {
$this->markTestSkipped(
"php-uv extension not loaded"
);
}
}
}