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

21 lines
372 B
PHP

<?php
namespace Amp\File\Test;
use Amp\File;
class EioDriverTest extends DriverTest
{
protected function execute(callable $callback): void
{
if (!\extension_loaded("eio")) {
$this->markTestSkipped(
"eio extension not loaded"
);
}
File\filesystem(new File\EioDriver);
$callback();
}
}