mirror of
https://github.com/danog/file.git
synced 2024-12-03 09:47:54 +01:00
28 lines
644 B
PHP
28 lines
644 B
PHP
<?php
|
|
|
|
namespace Amp\File\Test\Driver;
|
|
|
|
use Amp\File;
|
|
use Amp\File\Driver\UvFilesystemDriver;
|
|
use Amp\File\Test\AsyncFileTest;
|
|
use Revolt\EventLoop;
|
|
use Revolt\EventLoop\Driver\UvDriver as UvLoopDriver;
|
|
|
|
class UvFileTest extends AsyncFileTest
|
|
{
|
|
protected function createDriver(): File\FilesystemDriver
|
|
{
|
|
if (!\extension_loaded("uv")) {
|
|
$this->markTestSkipped("ext-uv not loaded");
|
|
}
|
|
|
|
$loop = EventLoop::getDriver();
|
|
|
|
if (!$loop instanceof UvLoopDriver) {
|
|
$this->markTestSkipped("Loop driver must be using ext-uv");
|
|
}
|
|
|
|
return new UvFilesystemDriver($loop);
|
|
}
|
|
}
|