1
0
mirror of https://github.com/danog/file.git synced 2024-11-30 04:19:39 +01:00
file/test/EioDriverTest.php
Aaron Piotrowski c6e6c32aaf Drop strict types
Dropping strict types so it is not enforced in callbacks provided by application code.
2016-12-29 20:59:59 -06:00

19 lines
487 B
PHP

<?php
namespace Amp\File\Test;
class EioDriverTest extends DriverTest {
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()));
});
} else {
$this->markTestSkipped(
"eio extension not loaded"
);
}
}
}