1
0
mirror of https://github.com/danog/file.git synced 2024-11-30 04:19:39 +01:00
file/test/EioDriverTest.php

23 lines
463 B
PHP
Raw Normal View History

<?php
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
2017-06-20 19:37:41 +02:00
use Amp\File;
use Amp\Loop;
use function Amp\asyncCall;
2015-07-30 16:10:53 +02:00
class EioDriverTest extends DriverTest {
protected function execute(callable $cb) {
2017-06-20 19:37:41 +02:00
if (!\extension_loaded("eio")) {
2015-07-18 18:08:50 +02:00
$this->markTestSkipped(
"eio extension not loaded"
2015-07-18 18:08:50 +02:00
);
}
2017-06-20 19:37:41 +02:00
Loop::run(function () use ($cb) {
File\filesystem(new File\EioDriver);
asyncCall($cb);
});
2015-07-18 18:08:50 +02:00
}
}